From 47769bfd599c46c6052ed69f7fce4836470008da Mon Sep 17 00:00:00 2001 From: Ben Bodenmiller Date: Sat, 18 Apr 2015 19:39:43 -0700 Subject: improve new project options * Simplify new repo commands * Include directions for how to add an existing folder that is either already a repo or not yet a repo Replaces #7918. --- CHANGELOG | 1 + app/views/projects/empty.html.haml | 11 +++++------ 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 0f250a0c365..e248a0cf41b 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -10,6 +10,7 @@ v 7.11.0 (unreleased) - - - + - Improve new project command options (Ben Bodenmiller) v 7.10.0 (unreleased) - Ignore submodules that are defined in .gitmodules but are checked in as directories. diff --git a/app/views/projects/empty.html.haml b/app/views/projects/empty.html.haml index 49806ceaa96..4f8104e0792 100644 --- a/app/views/projects/empty.html.haml +++ b/app/views/projects/empty.html.haml @@ -27,20 +27,19 @@ %legend Create a new repository %pre.dark :preserve - mkdir #{@project.path} + git clone #{ content_tag(:span, default_url_to_repo, class: 'clone')} cd #{@project.path} - git init 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 commit -m "add README" git push -u origin master %fieldset - %legend Push an existing Git repository + %legend Existing folder or Git repository %pre.dark :preserve - cd existing_git_repo + cd existing_folder + git init git remote add origin #{ content_tag(:span, default_url_to_repo, class: 'clone')} git push -u origin master -- cgit v1.2.1