How to test a merge without actually merging first

后端 未结 8 712
孤街浪徒
孤街浪徒 2020-12-22 16:43

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

8条回答
  •  天命终不由人
    2020-12-22 17:20

    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.

提交回复
热议问题