1

Hgsubversion を使用して HG から Subversion リポジトリに変更をプッシュする際に使用するユーザー名とパスワードを指定する方法を知りたいです。

リポジトリのどこに設定すればよいか知りたい

   "hgsubversion.username", "hgsubversion.password"
4

1 に答える 1

4

まずは見てみる

詳細については、 「hg help subversion」 を参照してください。

設定を

ユーザーグローバル ~/.hgrc ファイル

ローカル設定は影響しません

See 'hg help config' -- that explains that when we call a configuration
setting 'foo.bar', then you enter it in your configuration file as

[foo]
bar = something

[hgsubversion]
username = < your_name >
password = < your_secret >
于 2012-04-22T12:08:15.093 に答える