Commit d015bb322f82462b80d2fcec8884bc97574e18b5
1 parent
92c56822
Exists in
spb-stable
and in
3 other branches
New branch doesn't exist yet.
Showing
1 changed file
with
2 additions
and
2 deletions
Show diff stats
app/views/projects/branches/new.html.haml
... | ... | @@ -5,11 +5,11 @@ |
5 | 5 | .form-group |
6 | 6 | = label_tag :branch_name, 'Name for new branch', class: 'control-label' |
7 | 7 | .col-sm-10 |
8 | - = text_field_tag :branch_name, nil, placeholder: 'branch name, tag or commit SHA', required: true, tabindex: 1, class: 'form-control' | |
8 | + = text_field_tag :branch_name, nil, placeholder: 'enter new branch name', required: true, tabindex: 1, class: 'form-control' | |
9 | 9 | .form-group |
10 | 10 | = label_tag :ref, 'Create from', class: 'control-label' |
11 | 11 | .col-sm-10 |
12 | - = text_field_tag :ref, nil, placeholder: 'branch name, tag or commit SHA', required: true, tabindex: 2, class: 'form-control' | |
12 | + = text_field_tag :ref, nil, placeholder: 'existing branch name, tag or commit SHA', required: true, tabindex: 2, class: 'form-control' | |
13 | 13 | .form-actions |
14 | 14 | = submit_tag 'Create branch', class: 'btn btn-create', tabindex: 3 |
15 | 15 | = link_to 'Cancel', project_branches_path(@project), class: 'btn btn-cancel' | ... | ... |