diff --git a/progit/templates/docs.html b/progit/templates/docs.html index 4b68e3f..c5effd4 100644 --- a/progit/templates/docs.html +++ b/progit/templates/docs.html @@ -15,13 +15,13 @@

If you already have a git repo:

-      git remote add origin {{ config.get('GIT_URL') }}:docs/{{ repo.name }}.git
+      git remote add origin {{ config.get('GIT_URL') }}:docs/{{ repo.fullname }}.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
+      git clone {{ config.get('GIT_URL') }}:docs/{{ repo.fullname }}.git
       cd {{ repo.name }}
       touch README.rst
       git add README.rst
diff --git a/progit/templates/repo_info.html b/progit/templates/repo_info.html
index a78be3e..e592a38 100644
--- a/progit/templates/repo_info.html
+++ b/progit/templates/repo_info.html
@@ -13,13 +13,13 @@
 
     

If you already have a git repo:

-      git remote add origin {{ config.get('GIT_URL') }}:{{ repo.name }}.git
+      git remote add origin {{ config.get('GIT_URL') }}:{{ repo.fullname }}.git
       git push -u origin master
     

If you have no create your git repo yet:

-      git clone {{ config.get('GIT_URL') }}:{{ repo.name }}.git
+      git clone {{ config.get('GIT_URL') }}:{{ repo.fullname }}.git
       cd {{ repo.name }}
       touch README.rst
       git add README.rst