git merge

マージする

topic ブランチを acceptance ブランチへマージする。

  1. acceptance にチェックアウトする

    $ git checkout acceptance
    
  2. topic をマージします

    $ git merge topic
    
  3. コンフリクトしたら、解消して、

    $ git add .
    $ git commit -m "Merge branch 'topic-branch-name' into acceptance"
    
  4. マージに成功したら、強制push

    $ git push -u origin acceptance -f