We have three branches at work
We move on to branches based on developwhen we finish, we team up to develop into releaseone for the application under test. Meanwhile, we continue to develop and integrate things in develop.
Checked one release, we do a merge in master. We should never merge, develop directly into masters, and we want to automatically avoid human accidents.
Is there any way git can make branches incompatible, so any attempt to merge one into another is rejected? Is there a plugin or something else?
source
share