http://kozyty.com/blog/2013/03/git_lifechanging_git-checkout-_git-merge/
git checkout -以前チェックアウトしてきたブランチに、再度チェックアウトして戻ることができます。
git merge -カレントブランチにチェックアウトする前に居た、ブランチをマージしてくれます。
git checkout master git checkout -b new_branch echo "hoge" >> README git commit -m "update README" git checkout - git merge -面倒なブランチ名が要らない
めも