vote up 7 vote down star

I'm merging in a remote branch that may have a lot of conflicts. How can I tell if it will have conflicts or not?

I don't see anything like a --dry-run on git-merge.

flag

3 Answers

vote up 14 vote down check

As noted previously, pass in the --no-commit flag, but to avoid a fast-forward commit, also pass in --no-ff, like so:

$ git merge --no-commit --no-ff $BRANCH

This will allow you to examine/undo the merge, even if it is a fast-forward merge.

link|flag
vote up 4 vote down

Undoing a merge with git is so easy you shouldn't even worry about the dry run:

$ git pull $REMOTE $BRANCH
# uh oh, that wasn't right
$ git reset --hard ORIG_HEAD
# all is right with the world
link|flag
True, but in this case I had done the complex merge in a branch off master and wanted to be 100% sure it was a good FF merge. Had it not been I'd have gone back to the other branch and done something similar to your answer to get it in shape. – Otto Feb 1 at 22:09
vote up 1 vote down

Read the man page more carefully?

--no-commit
    Perform the merge but pretend the merge failed and do
    not autocommit, to give the user a chance to inspect and
    further tweak the merge result before committing.
link|flag
Nope. Just did exactly that and since it was a fast-forward merge (i.e., I had already done my conflict resolution right) it went right ahead and moved the ref. – Otto Feb 1 at 19:50
Conflict resolution in another branch which is what I was merging... had changed the original question to leave that bit out. – Otto Feb 1 at 20:06
Ah, my mistake for not actually trying it out. – jleedev Feb 1 at 20:55

Your Answer

Get an OpenID
or

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