如何获取远程服务器的汞路径?


90

我已经创建了远程仓库来通过ssl推送我的本地更改。我确实hg showconfig --debug找到了我的远程hg路径,但是它有点混乱,可以指出我如何确切地找到它是什么。

Answers:


132

hg paths 给出每个路径名与其URL之间的关系。

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

hg paths <name> 给出名称的网址。

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

> hg paths local
/local/path/to/repo

顺便说一句,只获取路径名:

> hg paths -q
default
local

hg paths -q <name>始终导致无输出。


Thax花花公子!对我有很大帮助
-TED

3
一些添加的信息:(hg paths无参数)显示您定义的任何符号路径(快捷方式)的所有URL,~/.hgrc以及在/.../<repo>/.hg/hgrc文件中标识的路径(如果您位于特定的本地存储库中)。我正在使用Mercurial 3.3。不确定较旧的版本。
贾斯汀·比雅德
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.