diff --git a/progit/templates/repo_info.html b/progit/templates/repo_info.html index 68ef2e9..a78be3e 100644 --- a/progit/templates/repo_info.html +++ b/progit/templates/repo_info.html @@ -19,11 +19,11 @@

If you have no create your git repo yet:

+      git clone {{ config.get('GIT_URL') }}:{{ repo.name }}.git
+      cd {{ repo.name }}
       touch README.rst
-      git init
       git add README.rst
       git commit -m "Add README file"
-      git remote add origin {{ config.get('GIT_URL') }}:{{ repo.name }}.git
       git push -u origin master