I'm trying to pull changes from a server which has sshd on port 2345 and an hg server listening locally on port 5432. I already have certifcate-based authentication for ssh, so there no need for a password.

This doesn't work:

hg -v pull ssh://me@myserver.com:2345/ -p 5432

since the pull command apparently takes the port number from where I assumed ssh would be taking it...

Any ideas how to do this?

link|improve this question

49% accept rate
feedback

2 Answers

The simplest would be to put an entry in .ssh/config, something like:

Host myserver.com
Port 2345
link|improve this answer
feedback

You just need

hg -v pull ssh://me@myserver.com:2345/full_pathname   

eg.

hg -v pull ssh://me@myserver.com:2345//srv/hg/username/repos 

-p is not a recognized option for hg pull. Note your path syntax above is also wrong

hg -v pull ssh://me@myserver.com:2345/

is not correct syntax.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.