When I found some bugs in my project,I created a hotfix branch:
git flow hotfix start fixSomeBug
When I did some changes and commits,I wanted to merge these commits to master,so I typed
git flow hotfix finish fixSomeBug
Next I needed to write three messages:
Write a message for merging to master
Write a message for tag: fixSomeBug
Write a message for merging to develop
That was fine,but I didn't want to create a tag named fixSomeBug automatically.
So what can I do to stop it?