vote up 4 vote down star
4

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

flag

2 Answers

vote up 6 vote down check

I solved my problem using

git checkout -m old
git checkout -b new B
git merge -s ours old
link|flag
vote up 6 vote down

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
get reset --hard origin

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

link|flag
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

Your Answer

Get an OpenID
or

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