changeset 1786:02a26ed03537 beta

fixed instructions for git
author Marcin Kuzminski <marcin@python-works.com>
date Sun, 18 Dec 2011 00:12:58 +0200
parents a0f15f35782d
children d4a7b6c82efe
files rhodecode/templates/shortlog/shortlog_data.html
diffstat 1 files changed, 5 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- a/rhodecode/templates/shortlog/shortlog_data.html	Sat Dec 17 22:46:19 2011 +0200
+++ b/rhodecode/templates/shortlog/shortlog_data.html	Sun Dec 18 00:12:58 2011 +0200
@@ -64,14 +64,14 @@
 
 <h4>${_('Push new repo')}</h4>     
 <pre>
-    hg clone ${c.clone_repo_url}
-    hg add README # add first file
-    hg commit -m "Initial" # commit with message
-    hg push # push changes back
+    ${c.rhodecode_repo.alias} clone ${c.clone_repo_url}
+    ${c.rhodecode_repo.alias} add README # add first file
+    ${c.rhodecode_repo.alias} commit -m "Initial" # commit with message
+    ${c.rhodecode_repo.alias} push # push changes back
 </pre>
  
 <h4>${_('Existing repository?')}</h4>
 <pre>
-    hg push ${c.clone_repo_url}
+    ${c.rhodecode_repo.alias} push ${c.clone_repo_url}
 </pre>    
 %endif