# HG changeset patch # User Marcin Kuzminski # Date 2011-12-17 22:12:58 # Node ID 02a26ed03537df8397ad0e4557536efcdd30ae10 # Parent a0f15f35782d22d4f00456b9742adae95e543dd1 fixed instructions for git diff --git a/rhodecode/templates/shortlog/shortlog_data.html b/rhodecode/templates/shortlog/shortlog_data.html --- a/rhodecode/templates/shortlog/shortlog_data.html +++ b/rhodecode/templates/shortlog/shortlog_data.html @@ -64,14 +64,14 @@

${_('Push new repo')}

-    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
 

${_('Existing repository?')}

-    hg push ${c.clone_repo_url}
+    ${c.rhodecode_repo.alias} push ${c.clone_repo_url}
 
%endif