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

My git cherry-pick FOO produced a conflict.

I could go through the conflicting files and delete the lines between <<<<<<< and =======, and the conflict markers themselves, but I'm hoping there's an easier way.

I think the svn equivalent was choosing theirs-conflict to resolve.

How do I do this in git?

I don't want git checkout --theirs <file> as that seems to produce the same result as git checkout foo <file> instead of just getting git diff FOO~..FOO <file> applied.

share|improve this question

1 Answer

up vote 3 down vote accepted

try to do this:

git cherry-pick --strategy=recursive -X theirs {Imported_Commit}
share|improve this answer
1  
A bit more information about what those switches are doing is available at stackoverflow.com/questions/2268172/… – antak Jan 17 at 22:28

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.