diff --git a/progit/templates/docs.html b/progit/templates/docs.html index 3f9bcb5..4b68e3f 100644 --- a/progit/templates/docs.html +++ b/progit/templates/docs.html @@ -15,17 +15,17 @@

If you already have a git repo:

-      git remote add origin https://githosted.org/{{ repo.name }}.git
+      git remote add origin {{ config.get('GIT_URL') }}:docs/{{ repo.name }}.git
       git push -u origin master
     

If you have no create your git repo yet:

+      git clone {{ config.get('GIT_URL') }}:docs/{{ 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 https://githosted.org/{{ repo.name }}.git
       git push -u origin master