Mar 202011
Clone a remote Mercurial repository over SSH
Answer:
To clone a remote Mercurial repository over SSH, is easy with the following command.
E.g.
# hg clone ssh://john@remote-host//remote-folder /local-folder
The key is the double slash //
That's it.