##// END OF EJS Templates
fixed instructions for git
marcink -
r1786:02a26ed0 beta
parent child Browse files
Show More
@@ -64,14 +64,14 b''
64
64
65 <h4>${_('Push new repo')}</h4>
65 <h4>${_('Push new repo')}</h4>
66 <pre>
66 <pre>
67 hg clone ${c.clone_repo_url}
67 ${c.rhodecode_repo.alias} clone ${c.clone_repo_url}
68 hg add README # add first file
68 ${c.rhodecode_repo.alias} add README # add first file
69 hg commit -m "Initial" # commit with message
69 ${c.rhodecode_repo.alias} commit -m "Initial" # commit with message
70 hg push # push changes back
70 ${c.rhodecode_repo.alias} push # push changes back
71 </pre>
71 </pre>
72
72
73 <h4>${_('Existing repository?')}</h4>
73 <h4>${_('Existing repository?')}</h4>
74 <pre>
74 <pre>
75 hg push ${c.clone_repo_url}
75 ${c.rhodecode_repo.alias} push ${c.clone_repo_url}
76 </pre>
76 </pre>
77 %endif
77 %endif
General Comments 0
You need to be logged in to leave comments. Login now