web-dev-qa-db-ja.com

リモートサーバーのhgパスを取得する方法は?

ローカルの変更をssl経由でプッシュするためのリモートリポジトリを作成しました。やった hg showconfig --debug私のリモートhgパスを見つけるために、面倒なことは、それが何であるかを正確に見つける方法を教えてくれます。

85
TED

hg pathsは、各パス名とそのURLの関係を示します。

> hg paths
default = ssh://[email protected]/repo
local = /local/path/to/repo

hg paths <name>は、名前のURLを示します。

> hg paths default
ssh://[email protected]/repo

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

ところで、パス名だけを取得するには:

> hg paths -q
default
local

およびhg paths -q <name>は常に出力されません。

126
Tim Delaney