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 has been archived by the owner on Jun 19, 2023. It is now read-only.
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.
The text was updated successfully, but these errors were encountered:
adamrodger
changed the title
git flow hotfix finish -b still back-merges master to develop
git flow hotfix finish -b still back-merges to develop
Nov 2, 2018
adamrodger
added a commit
to adamrodger/gitflow-avh
that referenced
this issue
Nov 6, 2018
…etervanderdoes#390
The previous solution still caused a merge to develop, it just performed
the merge slightly differently which was misleading. The new solution
does not merge to develop at all as the flag description implies.
… #390
The previous solution still caused a merge to develop, it just performed
the merge slightly differently which was misleading. The new solution
does not merge to develop at all as the flag description implies.
… #390
The previous solution still caused a merge to develop, it just performed
the merge slightly differently which was misleading. The new solution
does not merge to develop at all as the flag description implies.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
gitflow-avh/git-flow-hotfix
Line 563 in 9d3592e
When
git flow hotfix finish
is passed the-b
flag then it's not supposed to mergemaster
todevelop
, 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 todevelop
. What I want is for no merge todevelop
at all.The text was updated successfully, but these errors were encountered: