summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTM Lee <tm89lee@gmail.com>2017-04-25 13:50:59 +0800
committerTM Lee <tm89lee@gmail.com>2017-04-30 16:10:17 +0800
commitfd482ace44025f4a748f3b87bb994383d3f96f6c (patch)
tree05ae0ee6135cbbf4218021f83bb0c6c4ac1c18ec
parent1005389f70070245092c1ae5f3f9b10b8e7c102e (diff)
downloadgitlab-ce-fd482ace44025f4a748f3b87bb994383d3f96f6c.tar.gz
[#31254] Change Git commit command in "Existing folder" to git commit -m
-rw-r--r--app/views/projects/empty.html.haml2
-rw-r--r--changelogs/unreleased/31254-change-git-commit-command-in-existing-folder.yml4
2 files changed, 5 insertions, 1 deletions
diff --git a/app/views/projects/empty.html.haml b/app/views/projects/empty.html.haml
index 85e442e115c..50e0bad3ccf 100644
--- a/app/views/projects/empty.html.haml
+++ b/app/views/projects/empty.html.haml
@@ -60,7 +60,7 @@
git init
git remote add origin #{ content_tag(:span, default_url_to_repo, class: 'clone')}
git add .
- git commit
+ git commit -m "Initial commit"
git push -u origin master
%fieldset
diff --git a/changelogs/unreleased/31254-change-git-commit-command-in-existing-folder.yml b/changelogs/unreleased/31254-change-git-commit-command-in-existing-folder.yml
new file mode 100644
index 00000000000..950336ea932
--- /dev/null
+++ b/changelogs/unreleased/31254-change-git-commit-command-in-existing-folder.yml
@@ -0,0 +1,4 @@
+---
+title: Change Git commit command in Existing folder to git commit -m
+merge_request: 10900
+author: TM Lee