summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2021-08-02 22:25:44 +0000
committerGitLab Bot <gitlab-bot@gitlab.com>2021-08-02 22:25:44 +0000
commit8b3adfd8ffd1379127f2b3c13a2271d5619917b1 (patch)
treeaad2e2381a327501aacc3abf4348949bf44aa9a8
parentc5b336fefba94e02a170abcd627c6dd3d3d4955b (diff)
downloadgitlab-ce-8b3adfd8ffd1379127f2b3c13a2271d5619917b1.tar.gz
Add latest changes from gitlab-org/security/gitlab@14-0-stable-ee
-rw-r--r--app/views/projects/empty.html.haml8
1 files changed, 4 insertions, 4 deletions
diff --git a/app/views/projects/empty.html.haml b/app/views/projects/empty.html.haml
index 027b81d6c68..d9055f01dd8 100644
--- a/app/views/projects/empty.html.haml
+++ b/app/views/projects/empty.html.haml
@@ -44,26 +44,26 @@
:preserve
git clone #{ content_tag(:span, default_url_to_repo, class: 'js-clone')}
cd #{h @project.path}
- git switch -c #{default_branch_name}
+ git switch -c #{h default_branch_name}
touch README.md
git add README.md
git commit -m "add README"
- if @project.can_current_user_push_to_default_branch?
%span><
- git push -u origin #{ default_branch_name }
+ git push -u origin #{h default_branch_name }
%fieldset
%h5= _('Push an existing folder')
%pre.bg-light
:preserve
cd existing_folder
- git init --initial-branch=#{default_branch_name}
+ git init --initial-branch=#{h default_branch_name}
git remote add origin #{ content_tag(:span, default_url_to_repo, class: 'js-clone')}
git add .
git commit -m "Initial commit"
- if @project.can_current_user_push_to_default_branch?
%span><
- git push -u origin #{ default_branch_name }
+ git push -u origin #{h default_branch_name }
%fieldset
%h5= _('Push an existing Git repository')