2015-04-30 13:06:18 -04:00
|
|
|
- page_title "Protected branches"
|
2012-02-15 15:02:33 -05:00
|
|
|
|
2016-04-26 10:50:31 -04:00
|
|
|
.row.prepend-top-default.append-bottom-default
|
|
|
|
.col-lg-3
|
|
|
|
%h4.prepend-top-0
|
|
|
|
= page_title
|
2016-06-17 01:51:17 -04:00
|
|
|
%p Keep stable branches secure and force developers to use merge requests.
|
|
|
|
%p.prepend-top-20
|
2016-07-22 03:56:25 -04:00
|
|
|
By default, protected branches are designed to:
|
2016-04-26 10:50:31 -04:00
|
|
|
%ul
|
2016-07-22 03:56:25 -04:00
|
|
|
%li prevent their creation, if not already created, from everybody except Masters
|
|
|
|
%li prevent pushes from everybody except Masters
|
|
|
|
%li prevent <strong>anyone</strong> from force pushing to the branch
|
|
|
|
%li prevent <strong>anyone</strong> from deleting the branch
|
|
|
|
%p.append-bottom-0 Read more about #{link_to "protected branches", help_page_path("user/project/protected_branches"), class: "underlined-link"} and #{link_to "project permissions", help_page_path("user/permissions"), class: "underlined-link"}.
|
2016-06-17 01:51:17 -04:00
|
|
|
.col-lg-9
|
2016-04-26 10:50:31 -04:00
|
|
|
- if can? current_user, :admin_project, @project
|
2016-08-01 17:08:36 -04:00
|
|
|
= render 'create_protected_branch'
|
2012-02-15 15:02:33 -05:00
|
|
|
|
2016-04-26 10:50:31 -04:00
|
|
|
= render "branches_list"
|