Stop git flow from creating a tag automatically
You can use the -n operator. From the docs
-n don't tag this release
So the command will be like this
git flow hotfix finish -n fixSomeBug
If you want to not tag an individual hotfix you can use the -n
flag:
git flow hotfix finish -n fixSomeBug
If you want to have the default not to be tagged you can set this config:
git config gitflow.hotfix.finish.notag true