diff options
author | Patrick Bajao <ebajao@gitlab.com> | 2019-03-21 19:11:06 +0800 |
---|---|---|
committer | Patrick Bajao <ebajao@gitlab.com> | 2019-03-21 19:53:04 +0800 |
commit | 438485ef88c762b59ee9fb6089d8b7256554fe24 (patch) | |
tree | be68b7349d3b758c18826f77bd72528b6d2bc4ad /doc | |
parent | 6811f1aca57b0216a16195804d9b453fe1796baa (diff) | |
download | gitlab-ce-438485ef88c762b59ee9fb6089d8b7256554fe24.tar.gz |
Allow users to create protected branches via CLI
This is for fixing a regression introduced by:
https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/24969
This fix will allow users who are allowed to push to protected
branches to create protected branches via CLI as well, just
like before. The checks for protected branch creation won't
need to run.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/user/project/protected_branches.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/user/project/protected_branches.md b/doc/user/project/protected_branches.md index 480cc921d76..2060b5dd4a2 100644 --- a/doc/user/project/protected_branches.md +++ b/doc/user/project/protected_branches.md @@ -10,7 +10,7 @@ created protected branches. By default, a protected branch does four simple things: - it prevents its creation, if not already created, from everybody except users - who are allowed to merge + with Maintainer permission - it prevents pushes from everybody except users with Maintainer permission - it prevents **anyone** from force pushing to the branch - it prevents **anyone** from deleting the branch |