diff --git a/progit/templates/repo_info.html b/progit/templates/repo_info.html index d8f5b2a..e8fb7fc 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') }}:{% if repo.parent %}forks/{% endif %}{{ repo.fullname }}.git + git remote add origin {{ config.get('GIT_URL_SSH') }}:{% if repo.parent %}forks/{% endif %}{{ repo.fullname }}.git git push -u origin master
If you have no create your git repo yet:
- git clone {{ config.get('GIT_URL') }}:{% if repo.parent %}forks/{% endif %}{{ repo.fullname }}.git + git clone {{ config.get('GIT_URL_SSH') }}:{% if repo.parent %}forks/{% endif %}{{ repo.fullname }}.git cd {{ repo.name }} touch README.rst git add README.rst