https://github.com/petervanderdoes/gitflow-avh/blob/9d3592e7ee2bfa3df2d9c76885672b34ef12658f/git-flow-hotfix#L563
When git flow hotfix finish is passed the -b flag then it's not supposed to merge master to develop, but it does.
Steps:
git flow init -d
git flow hotfix start 1.0.1
git commit --allow-empty -m "hotfix commit"
git flow hotfix finish -b 1.0.1
The only difference between with and without -b is the way in which the merge is made to develop. What I want is for no merge to develop at all.
https://github.com/petervanderdoes/gitflow-avh/blob/9d3592e7ee2bfa3df2d9c76885672b34ef12658f/git-flow-hotfix#L563
When
git flow hotfix finishis passed the-bflag then it's not supposed to mergemastertodevelop, but it does.Steps:
git flow init -d git flow hotfix start 1.0.1 git commit --allow-empty -m "hotfix commit" git flow hotfix finish -b 1.0.1The only difference between with and without
-bis the way in which the merge is made todevelop. What I want is for no merge todevelopat all.