Is it possible to do a git merge, but without a commit?
git merge
\"man git merge\" says this:
With --no-commit perform the merge but pretend the
If you only want to commit all the changes in one commit as if you typed yourself, --squash will do too
$ git merge --squash v1.0 $ git commit