如何使用 bzr-svn 保存 subversion 密码
我正在使用 bzr-svn 使用 bazaar 来检查 svn 存储库。但是 bzr-svn 每次都会要求输入密码,我在网上搜索了有关authentication.conf的信息,
我将以下部分放在authentication.conf中
[something]
scheme=svn+http #tried http only or svn only
host=uuuuuu.com
path=/svn/project #tried without stating path
user=wwwww
password='mmmmmm' #tried without quotes
在所有情况下,要么提示我输入密码,要么出现以下错误
bzr: ERROR: Permission denied: ".": OPTIONS of 'http://xxxxxxxxx/': authorization failed: Could not authenticate to server: rejected Basic challenge (http://gamernetwork.unfuddle.com)
我将相同的片段放入bazaar .conf 和 subversion.conf,但我得到了相同的结果/错误。
如何使用 bzr-svn 而不需要每次都输入密码?
I am using bzr-svn to chekout svn repositories using bazaar. But bzr-svn asks for passwords everytime, I searched the web to find out about authentication.conf
I put the following section authentication.conf
[something]
scheme=svn+http #tried http only or svn only
host=uuuuuu.com
path=/svn/project #tried without stating path
user=wwwww
password='mmmmmm' #tried without quotes
In all cases either I was prompted for password, or got the following error
bzr: ERROR: Permission denied: ".": OPTIONS of 'http://xxxxxxxxx/': authorization failed: Could not authenticate to server: rejected Basic challenge (http://gamernetwork.unfuddle.com)
I put the same snippet in bazaar.conf and subversion.conf, but I got the same results/errors.
How can I use bzr-svn without typing my password each and every time?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我从 #bzr IRC 频道了解到 bzr-svn 可以使用常规颠覆客户端的缓存身份验证信息。
您只需使用 svn 签出该项目一次,并保存用户名和密码。之后bzr svn就可以使用这个密码了。
I learned from #bzr IRC channel that bzr-svn can use cached authentication info of regular subversion client.
You just have to checkout the project once with svn, saving the user name and password. After that, bzr svn can use this password.