here is the complete scenario:
- Main repository:
http://10.0.1.8:8000/ptest - I clone it at host
10.1.0.115, in the folder/LOCAL-REPO Then, publish it using the command
hg serve -p 9900 -d --webdir-conf hgwebconfigwith thehgwebconfigfile having[paths] ptest = /LOCAL_REPO/ptest [web] style = gitweb
now, on the same host 10.0.1.115, i create a seperate folder /QA and do:
hg clone http://10.0.1.115:9900/ptest and get all the files, now i want to make changes and push them to the repo on http://10.0.1.115:9900/ptest using the command
hg push ssh://10.0.1.115//??/ptest I don't know what the correct value would be for ??. So the questions are:
- How do i setup a user/password to push changes to this repo on
10.0.1.115? - what is the corect syntax in this case?
When I try to push the changes I get error:
hg push ssh://[email protected]/ptest [email protected]'s password: remote: abort: There is no Mercurial repository here (.hg not found)! abort: no suitable response from remote hg!