Empty repo, just learning some advanced git
techniques.
- make code more readable
- document as you go
- time division multiplexing
git checkout -b <branch>
git add <file>
git commit -m 'comment'
git push --set-upstream origin <branch>
git fetch origin
git checkout master
git merge --no-ff <branch>
git push origin master
git push origin -d <branch>
git branch -d <branch>
or...
'create' a repo from the CLI: