Is there any way of simulating a git merge
between two branches, the 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?
To see the beginning of the merge conflict in your file, search the file for the conflict marker <<<<<<< . When you open the file in your text editor, you'll see the changes from the HEAD or base branch after the line <<<<<<< HEAD .
The only difference that comes from merging order should be the order of the parents of the merge commit. Edit: If you are interested in more details, torek's answer is what you are looking for.
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.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With