I have don a git svn rebase
and I got a conflict. I want to use git-merge-file
to merge the two versions of the file by choosing the version on the server. git-merge-file
has this option called --theirs
but git-merg-file
takes 3 parameters. How can I pass it just my file that contains the conflict markers and make it choose their version?
I also tried git merge -Xtheirs file.cpp
but it doesn't work.