Gitlab中"Allowed to push"和"Allowed to merge"的含义
Meaning of "Allowed to push" and "Allowed to merge" in Gitlab
Gitlab保护分支中的"Allowed to push"和"Allowed to merge"是什么意思
Allowed to push 意味着 - 允许用户 git push
到分支。
允许合并表示允许用户接受合并请求到该分支。
Using the "Allowed to push" and "Allowed to merge" settings, you can control the actions that different roles can perform with the protected branch. For example, you could set "Allowed to push" to "No one", and "Allowed to merge" to "Developers + Masters", to require everyone to submit a merge request for changes going into the protected branch
Allowed to push
允许一组人直接 fast-forward commit and non-force push 到一个特定的分支,理想情况下对于受保护的分支,它应该只允许大师。
Allowed to merge
允许一组人 merge/pull 请求进入一个分支,对于像 master 这样的受保护分支来说,理想情况下应该再次只针对 Masters .
Gitlab保护分支中的"Allowed to push"和"Allowed to merge"是什么意思
Allowed to push 意味着 - 允许用户 git push
到分支。
允许合并表示允许用户接受合并请求到该分支。
Using the "Allowed to push" and "Allowed to merge" settings, you can control the actions that different roles can perform with the protected branch. For example, you could set "Allowed to push" to "No one", and "Allowed to merge" to "Developers + Masters", to require everyone to submit a merge request for changes going into the protected branch
Allowed to push
允许一组人直接 fast-forward commit and non-force push 到一个特定的分支,理想情况下对于受保护的分支,它应该只允许大师。
Allowed to merge
允许一组人 merge/pull 请求进入一个分支,对于像 master 这样的受保护分支来说,理想情况下应该再次只针对 Masters .