summaryrefslogtreecommitdiff
path: root/app/views/projects/empty.html.haml
diff options
context:
space:
mode:
authorBen Bodenmiller <bbodenmiller@hotmail.com>2014-09-16 21:48:08 -0700
committerBen Bodenmiller <bbodenmiller@hotmail.com>2014-09-16 21:48:08 -0700
commitdcc51b0d2c84fefaa35d61dc718b0aeecb023811 (patch)
tree76470ad310f3ebc55caf7831ed2180332d7b6293 /app/views/projects/empty.html.haml
parent39c47844193266642c9e56c10290d8df3ae74b3c (diff)
downloadgitlab-ce-dcc51b0d2c84fefaa35d61dc718b0aeecb023811.tar.gz
cleanup empty repo page
Improve wording on empty repo page and make header capitalization consistent
Diffstat (limited to 'app/views/projects/empty.html.haml')
-rw-r--r--app/views/projects/empty.html.haml10
1 files changed, 5 insertions, 5 deletions
diff --git a/app/views/projects/empty.html.haml b/app/views/projects/empty.html.haml
index c0baa3f90e4..59f19c8b7a3 100644
--- a/app/views/projects/empty.html.haml
+++ b/app/views/projects/empty.html.haml
@@ -2,27 +2,27 @@
%div.git-empty
%fieldset
- %legend Git global setup:
+ %legend Git global setup
%pre.dark
:preserve
git config --global user.name "#{git_user_name}"
git config --global user.email "#{git_user_email}"
%fieldset
- %legend Create Repository
+ %legend Create a new repository
%pre.dark
:preserve
mkdir #{@project.path}
cd #{@project.path}
git init
- touch README
- git add README
+ touch README.md
+ git add README.md
git commit -m "first commit"
git remote add origin #{ content_tag(:span, default_url_to_repo, class: 'clone')}
git push -u origin master
%fieldset
- %legend Existing Git Repo?
+ %legend Push an existing Git repository
%pre.dark
:preserve
cd existing_git_repo