Hello. Our workflow involves 3 main branches and then feature branches. We have
- Release branch
- Master branch
- Develop Branch
Right now our Master branch is 1 commit behind Release. We are getting requested to Synch now. However the code between the branches is identical, and the difference between the branches is the commit:
"Merge branch 'master' into release"
We had the opposite issue where Master was ahead of Release due to the merge commits, so we merged Master into Release. It seems like we will always be chasing our tail if the merge commits cause our branches to be out of synch. We did not have this issue before.
Does anyone have any suggestions?