git - Gitflow - master and develop diverged -
The model of the implemented git branches is shown below
But my branch Step 1: Merge for release in Master (no faster than forward)
Step 2: Merge release in development (no faster than forward)
After merging with step 1, it will not be available for step 2, the development and master gets separated.
How to develop and master the separation If you have a look at This means that if you use the following git-flow
model naturally develops
master
deviation There is no way to follow that workflow and make sure that develops
and One of the master
is always the ancestor of the other. Master
and in the development
you should only see the merge committ:
git log develop..master
git-log
command, then the output should be empty:
git log - If you are not satisfied with this answer, please explain why it counts for you, to explain your question,
develop
and Master
should not be different from each other.
Comments
Post a Comment