You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jun 19, 2023. It is now read-only.
gitflow-avh/git-flow-hotfix
Line 563 in 9d3592e
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.