現在いるブランチ名を表示する
$ git branch --contains
変更されたファイルすべてをaddする
$ git add -A
変更内容をコミット
$ git commit -m "comment"
masterブランチに移動
$ git checkout master
branch1ブランチを現在のブランチにマージ
$ git merge branch1
ローカルのmasterブランチをリモートのmasterにpush
$ git push origin master
ローカルのbranch1ブランチをリモートのmasterにpush
$ git push origin branch1:master
登録されているリモートリポジトリの確認
$ git remote -v