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.
This commit is contained in:
parent
41f01dd3f4
commit
47769bfd59
2 changed files with 6 additions and 6 deletions
|
@ -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.
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue