Software Development My GIT master <-> branch cheetsheet 22 July 2015 David Leave a comment create a branch git checkout -b api_0_4_4 switch to a branch git fetch && git checkout api_0_4_4 merge a branch git checkout master git pull origin master git merge api_0_4_4 git push origin master