マージする
topic ブランチを acceptance ブランチへマージする。
-
acceptance にチェックアウトする
$ git checkout acceptance
-
topic をマージします
$ git merge topic
-
コンフリクトしたら、解消して、
$ git add .
$ git commit -m "Merge branch 'topic-branch-name' into acceptance"
-
マージに成功したら、強制push
$ git push -u origin acceptance -f