How to get hg path of remote server?

I have created a remote repo to make local changes to ssl. I did hg showconfig --debug to find my remote hg path, but it is messy, can someone tell me how to find it exactly what it is.

+70
mercurial hgrc
Feb 08 '13 at 11:52
source share
1 answer

hg paths gives a link between each path name and its URL.

 > hg paths default = ssh://hg@example.org/repo local = /local/path/to/repo 

hg paths <name> indicates the URL of the name.

 > hg paths default ssh://hg@example.org/repo > hg paths local /local/path/to/repo 

BTW to get only path names:

 > hg paths -q default local 

and hg paths -q <name> will not always be output.

+105
Feb 08 '13 at 19:46
source share



All Articles