gitでbranchの内容をmasterにマージ

Gitのブランチを利用して開発をした結果、それをmasterにマージする場合は、

masterに戻った状態で

git merge ブランチ名

を行う。

例)
git checkout master
git merge 対象ブランチ名