1. ホーム
  2. mercurial

[解決済み] リモートサーバーの hg パスを取得する方法は?

2023-01-12 03:21:19

質問

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

どのように解決するには?

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> は常に無出力になります。