Git merge without auto commit

Note the output while doing the merge – it is saying Fast Forward

In such situations, you want to do:

git merge v1.0 --no-commit --no-ff

Leave a Comment