How I can use git flow release finish
in a manner that doesn\'t ask for merge commit messages? The -m
flag doesn\'t provide this, as I expected.
Unfortunately there's no out-of-the-box way to achieve that with the current version of git-flow.
By looking at the source code, the git command used to merge is
git merge --no-ff
and there's no way to pass the --no-edit
flag to it.
A couple of things you could do: