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.