Home > Software engineering >  Disable possibility to merge a branch into an other branch
Disable possibility to merge a branch into an other branch

Time:06-18

Is it possible to disable possibility to merge one branch into another? For example, I have a branch named develop and feature branches named A, B and C.

I want to make impossible to merge develop into A, or into B or into C:

git checkout A
git merge develop 

should return an error.

CodePudding user response:

No, this is not possible in Git. Instead you would manually review suggested changes to your repo and reject those that you don't like (for example, somebody dragged changes from develop to branch A).

  •  Tags:  
  • git
  • Related