目前的情况:
有多个分支,其中包含一个主线分支master
,这个分支主要用于发版
其他的分支为各自的本地开发分支,这里可以命名为,例如:test1
、test2
、test...
问题:
所有成员都可以修改、合并任意分支到主线分支master
(甚至也可以直接把master
删了)
想要实现的最终结果:
能否给主线分支master
设置权限,只允许特定用户进行修改、同步、合并其他分支的操作
天蓬老师2017-05-02 09:48:55
In gitlab, set master as a protected branch and not allow developers to push. In github, there is also a protected branch function under Settings->Branches.