我想知道如何指定用户名和密码,以便使用Hgsubversion将更改从HG推送到subversion存储库
我想知道我应该在存储库中的什么位置设置
"hgsubversion.username", "hgsubversion.password"发布于 2012-04-22 20:08:15
试着先看看
'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 >https://stackoverflow.com/questions/10032424
复制相似问题