Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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 :(

share|improve this question
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

8 Answers

up vote 105 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)

share|improve this answer
2  
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 '12 at 11:32

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.

share|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
I really don't understand Junio Hamano's explanation at all. How is git reset --hard origin a solution for a theirs style merge? If I wanted to merge BranchB into BranchA (like in Alan W. Smith's answer), how would I do it using the reset method? – James McMahon Sep 20 '12 at 14:23
@James McMahon: Junio C Hamano’s point is not git reset --hard does a “theirs”-style merge. Of course, git reset --hard does not create any merge commit, or any commit for that matter. His point is that we should not use a merge to replace whatever in HEAD by something else. I do not necessarily agree, though. – Tsuyoshi Ito Nov 9 '12 at 19:44

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".

share|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 '12 at 22:17
Brilliant ... this is exactly perfect. – Greg Combs Mar 6 '12 at 5:33
1  
@cdunn2001: Somehow I thought the same thing, but no. Note that git reset --hard changes which commit branchA points to. – Tsuyoshi Ito Nov 9 '12 at 19:37
show 3 more comments

I solved my problem using

git checkout -m old
git checkout -b new B
git merge -s ours old
share|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

I used the answer from Paul Pladijs since now. I found out, you can do a "normal" merge, conflicts occur, so you do

git checkout --theirs <file>

to resolve the conflict by using the revision from the other branch. If you do this for each file, you have the same behaviour as you would expect from

git merge <branch> -s theirs

Anyway, the effort is more than it would be with the merge-strategy! (This was tested with git version 1.8.0)

share|improve this answer
would be great if the list of files could be retrieved. For example, git ls-files --modified | xargs git add I wanted to do this for added on both sides merge :/ – andho Nov 26 '12 at 8:02
Actually git returns the added on both sides files with git ls-files --modified so i guess this is also a viable solution. – andho Nov 26 '12 at 8:06

If you are on branch A do:

git merge -s recursive -X theirs B

Tested on git version 1.7.8

share|improve this answer

This will merge your newBranch in existing baseBranch

git checkout <baseBranch> // this will checkout baseBranch
git merge -s ours <newBranch> // this will simple merge newBranch in baseBranch
git rm -rf . // this will remove all non references files from baseBranch (deleted in newBranch)
git checkout newBranch -- . //this will replace all conflicted files in baseBranch
share|improve this answer

The solution from rafalmag worked for me (git 1.8.1.2-preview20130201).

share|improve this answer
this should be added as an comment – pulasthi May 13 at 14:38

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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