- Branching strategy
http://nvie.com/posts/a-successful-git-branching-model/
- useful aliases
- can add this to bashrc OR
- can may be set them as git aliases
* gitl
- the command: git log --all --graph --online --decorate
- alias gitl="git log --all --graph --decorate --oneline"
- what can be deciphered from the graph
- is a feature
* gitm
- alias gitm="git merge --no-ff --no-commit"
* gitpl
- alias gitpl="git pull --no-ff --no-commit"