4

我正在使用 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 而无需每次都输入密码?

4

1 回答 1

2

我从#bzr IRC 频道了解到,bzr-svn 可以使用常规颠覆客户端的缓存身份验证信息。

您只需使用 svn 签出一次项目,保存用户名和密码。之后,bzr svn 就可以使用这个密码了。

于 2010-07-05T08:38:40.783 回答