密码 – 如何使用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?

最佳答案 我从#bzr IRC频道了解到,bzr-svn可以使用常规subversion客户端的缓存认证信息.

您只需使用svn签出项目一次,保存用户名和密码.之后,bzr svn可以使用此密码.

点赞