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