2020-07-28 23:09:34 +05:30
|
|
|
- page_title _("New Branch")
|
2017-08-17 22:00:37 +05:30
|
|
|
- default_ref = params[:ref] || @project.default_branch
|
2015-09-25 12:07:36 +05:30
|
|
|
|
2015-04-26 12:48:37 +05:30
|
|
|
- if @error
|
|
|
|
.alert.alert-danger
|
2017-08-17 22:00:37 +05:30
|
|
|
%button.close{ type: "button", "data-dismiss" => "alert" } ×
|
2015-04-26 12:48:37 +05:30
|
|
|
= @error
|
2014-09-02 18:07:02 +05:30
|
|
|
%h3.page-title
|
2015-12-23 02:04:40 +05:30
|
|
|
New Branch
|
|
|
|
%hr
|
|
|
|
|
2018-11-08 19:23:39 +05:30
|
|
|
= form_tag namespace_project_branches_path, method: :post, id: "new-branch-form", class: "js-create-branch-form js-requires-input" do
|
|
|
|
.form-group.row
|
|
|
|
= label_tag :branch_name, nil, class: 'col-form-label col-sm-2'
|
2014-09-02 18:07:02 +05:30
|
|
|
.col-sm-10
|
2019-02-15 15:39:39 +05:30
|
|
|
= text_field_tag :branch_name, params[:branch_name], required: true, autofocus: true, class: 'form-control js-branch-name monospace'
|
2018-11-08 19:23:39 +05:30
|
|
|
.form-text.text-muted.text-danger.js-branch-name-error
|
|
|
|
.form-group.row
|
|
|
|
= label_tag :ref, 'Create from', class: 'col-form-label col-sm-2'
|
2017-08-17 22:00:37 +05:30
|
|
|
.col-sm-10.create-from
|
|
|
|
.dropdown
|
|
|
|
= hidden_field_tag :ref, default_ref
|
2019-02-15 15:39:39 +05:30
|
|
|
= button_tag type: 'button', title: default_ref, class: 'dropdown-menu-toggle wide js-branch-select monospace', required: true, data: { toggle: 'dropdown', selected: default_ref, field_name: 'ref' } do
|
2017-08-17 22:00:37 +05:30
|
|
|
.text-left.dropdown-toggle-text= default_ref
|
2021-01-29 00:20:46 +05:30
|
|
|
= sprite_icon('chevron-down', css_class: "dropdown-menu-toggle-icon gl-top-3")
|
2017-08-17 22:00:37 +05:30
|
|
|
= render 'shared/ref_dropdown', dropdown_class: 'wide'
|
2018-11-08 19:23:39 +05:30
|
|
|
.form-text.text-muted Existing branch name, tag, or commit SHA
|
2014-09-02 18:07:02 +05:30
|
|
|
.form-actions
|
2021-01-29 00:20:46 +05:30
|
|
|
= button_tag 'Create branch', class: 'gl-button btn btn-success'
|
|
|
|
= link_to 'Cancel', project_branches_path(@project), class: 'gl-button btn btn-cancel'
|
2017-09-10 17:25:29 +05:30
|
|
|
%script#availableRefs{ type: "application/json" }= @project.repository.ref_names.to_json.html_safe
|