如何获得远程服务器的hgpath?

我已经创build远程回购推动我的本地变化通过SSL。 我做了hg showconfig --debug来find我的远程hgpath,但是这个混乱可以有一点指出我如何正确地find它是什么。

hg paths给出了每个path名和它的url之间的关系。

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

hg paths <name>给出hg paths <name>的url。

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

顺便说一句,得到只是path名称:

 > hg paths -q default local 

hg paths -q <name>将始终导致没有输出。