I am still new to this so I am trying to understand why master
ends up 1 commit ahead of develop
instead of the same after merging a release
branch back into develop
and master
.
My develop
branch was 5 commits ahead of master, then I created a release
branch and tagged which was also 5 commits ahead of master
, then I merged release
branch back into develop
and master
but master
ends up 1 commit ahead of develop
.
Is this because no changes were made to the release
branch and it was the same as develop
so the merge didn't create a commit on develop
but it did on master
which makes master
1 commit ahead even though master
and develop
now are the same at this point?
Is this ok? Will this cause any problems?
master
back into develop instead ofrelease
? – Lederman