hotfix finish tag does not mirror release finish tag
cjamesrohan opened this issue · 0 comments
cjamesrohan commented
git flow release finish -m "tag commit" 1.0.0
seems to checkout the master branch, merge the release branch, tag, checkout the develop branch, merge the master branch.
git flow hotfix finish -m "tag commit" 1.0.0
seems to tag first, which will place the tag on whatever branch you currently have checked out, then do all the merging. For example, if I currently have the develop branch checked out with new features (for whatever reason), it will place the tag on the latest commit which would be a feature that is NOT currently in the master branch.
can we get git flow hotfix finish to mirror the git flow release finish logic?