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

Is there any way of simulating a git merge between two branches (current working branch and the master), but without making any changes?

I often have conflicts when I have to make a git merge. Is there any way of simulating the merge first?

share|improve this question

2 Answers

up vote 18 down vote accepted

I don't think there is a way of simulating what will happen until you try the merge. However, if you make sure that the output of git status is empty before you do the merge, it is quite safe to just go ahead and try it. If you get conflicts, you can immediately get back to the state you were at before with:

git reset --merge
share|improve this answer
@Amber's answer is answering exactly what is being asked 'how to simulate the merge'. using --no-commit is much easier in my opinion – samirahmed May 6 at 3:42
1  
@samirahmed: @Amber answered the question more literally, sure, although with --no-commit you're still changing the index and the working tree, which isn't exactly "without making any changes" :) My point is that when people ask this kind of question, it's generally because they're not aware that the best way to see how a merge would go is to just try the merge, often because they're not aware of how easy it is to get back to the state they were in before if there turned out to be problems. – Mark Longair May 7 at 10:24

You can use git merge --no-commit to prevent the merge from actually being committed, and if you don't like how the merge works out, just reset to the original head.

If you definitely don't want to finalize the merge, even if it's a fast-forward (and thus has no conflicts, by definition), you could add --no-ff as well.

share|improve this answer
I don't think that git merge --abort exists - perhaps you mean git reset --merge? – Mark Longair Sep 20 '11 at 11:17
Nah, I just forgot that unlike rebase there isn't a --abort for git merge. – Amber Sep 20 '11 at 11:27
1  
I'd throw on --no-ff too. To keep a ff merge from occurring. – Andy Sep 20 '11 at 13:12
@Andy possibly - though since the OP seems to mostly be wanting to know if there are merge conflicts (which an FF merge by definition isn't going to have), it might not be necessary. – Amber Sep 20 '11 at 13:16

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.