When merging topic branch "B" in "A" using git merge, I get some conflicts. I know all the conflicts can be solved using the version in "B".

I am aware of git merge -s ours. But what I want is something like git merge -s their.

Why it does not exist? How can I achieve the same result after the conflicting merge with hot git commands? (git checkout every unmerged file from B)

thanks

UPDATE: however, this solution just discard anything from branch A (the merge commit point to B version of the tree). This is not what I am looking for :(

link|improve this question

75% accept rate
Also see this answer: stackoverflow.com/questions/928646/… - it's trivial to change the example to use version B instead of A. – Robie Basak Nov 8 '10 at 23:11
See SO answer git command for making one branch like another for all the current possible ways to simulate git merge -s their. – VonC Mar 13 '11 at 8:54
would you please consider marking @anotherAlan's as the correct one? Thanks. – Yar May 7 '11 at 19:02
feedback

5 Answers

up vote 49 down vote accepted

One other thing to look at is adding the strategy with -X. For example:

git checkout branchA
git merge -Xtheirs branchB

This works for me in version 1.7.1 of Git. The only conflicts I see are if I have deleted a file in branchB. The merge will complain about that as a conflict. Basically, what happens is that when you checkout branchA the file you deleted in branchB will still be there. To fix the conflict, just do:

git rm {DELETED-FILE-NAME}

and the commit from there.

(If you happen to remember to delete the files first, the merge with -Xtheirs should not complain about conflicts)

link|improve this answer
1  
actually this is the best answer. – Felipe Micaroni Lalli Mar 13 '11 at 20:56
this saved my day! Favoriting for future reference :) – Pabluez Dec 21 '11 at 20:32
That is exactly what I was looking for, thanks. – Echelon Feb 2 at 11:32
feedback

Older versions of git allowed you to use the "theirs" merge strategy:


git pull --strategy=theirs remote_branch

But this has since been removed, as explained in this message by Junio Hamano (the Git maintainer). As noted in the link, instead you would do this:


git fetch origin
git reset --hard origin

Beware, though, that this is different than an actual merge. Your solution is probably the option you're really looking for.

link|improve this answer
thanks, I am not totally satisfy by my answer though, it was missing the checkout of other files in old. it was odd, I add to checkout them... to commit --amend them then. – elmarco Oct 6 '08 at 23:25
feedback

A possible and tested solution for merging branchB into our checked-out branchA:

# in case branchA is not our current branch
git checkout branchA

# make merge commit but without conflicts!!
# the contents of 'ours' will be discarded later
git merge -s ours branchB    

# make temporary branch to merged commit
git branch branchTEMP         

# get contents of working tree and index to the one of branchB
git reset --hard branchB

# reset to our merged commit but 
# keep contents of working tree and index
git reset --soft branchTEMP

# change the contents of the merged commit
# with the contents of branchB
git commit --amend

# get rid off our temporary branch
git branch -D branchTEMP

# verify that the merge commit contains only contents of branchB
git diff HEAD branchB

To automate it you can wrap it into a script using branchA and branchB as arguments.

This solution preserves the first and second parent of the merge commit, just as you would expect of "git merge -s theirs branchB".

link|improve this answer
2  
This works absolutely perfectly. This answer should be considered THE ANSWER. – UsAaR33 Jun 25 '11 at 0:41
1  
+1 Of all the solutions I read online, this is the one that worked for me. – Craige Oct 5 '11 at 20:54
1  
Definitely what I was looking for, thanks for the tip ! – Cedric Gatay Jan 6 at 22:17
Brilliant ... this is exactly perfect. – Greg Combs Mar 6 at 5:33
feedback

I solved my problem using

git checkout -m old
git checkout -b new B
git merge -s ours old
link|improve this answer
a branch "B" from "old" branch – elmarco Feb 22 '10 at 17:07
If this is the solution, then you should mark it as the answer. – Ziggy Jul 15 '11 at 21:31
feedback

If you are on branch A do:

git merge -s recursive -X theirs B

Tested on git version 1.7.8

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.