0

Branch A was merged with master, had its conflicts resolved and additional commits added. The master branch also has addition commits. What is the best way to merge these two branches and use branch A's changes over the master branch?

Thanks!

Tuan
  • 1,476
  • 13
  • 23
  • Google for 'git merge strategies'. There are [plenty of answers](http://stackoverflow.com/a/3364506/877115) out there. – Christopher Nov 11 '13 at 21:04

1 Answers1

1

The command below should do the trick - execute from master

git merge -s theirs A
Eugene Sajine
  • 8,104
  • 3
  • 23
  • 28