(source: http://nvie.com/posts/a-successful-git-branching-model/)
git checkout -b develop
git remote add origin git push origin develop git pull origin develop
git branch -u origin/develop
git pull git push
git checkout master git merge --no-ff develop
git branch -d hotfix-1.2.1