“allows team members to develop a shared understanding of the branching and releasing processes” http://nvie.com/posts/a-successful-git-branching-model/ Thursday, March 15, 12
ALL work on local feature branches • Limit remote branches • Rebase as often as you would ‘Get Latest’ • Only fast-forward merge to master Thursday, March 15, 12
XYZ >> git pull >> git checkout -b XYZ I do some work... >> git add/commit It’s been a while since I started... >> git checkout master >> git pull >> git checkout XYZ >> git rebase master Thursday, March 15, 12