/hackathon

Primary LanguageJupyter Notebook

hackathon

Basic ideas

git branch -b --branch_name - create branch
git checkout branch_name - switch to branch

Git work structure

For each new feature - create a branch.
After you finish, go to github and send a pull request to master.
Then approve your pull request.
Then do the following commands:

git checkout master - switch to master
git pull origin master - get the latest vesion of master\