天天看点

在Linux下SVN Check out时需要一直输入密码的问题

之前几天在linux server上重新创建了一个新的环境,用自己的帐号check out了新的代码,但是发现每次update的时候需要输入密码,很繁。google了一下,其中一个解决方法是在/home/<user>/.subversion/目录下的config文件找到一下配置:

### section for authentication and authorization customizations.

[auth]

### set store-passwords to 'no' to avoid storing passwords in the

### auth/ area of your config directory.  it defaults to 'yes'.

### note that this option only prevents saving of *new* passwords;

### it doesn't invalidate existing passwords.  (to do that, remove

### the cache files by hand as described in the subversion book.)

# store-passwords = no

将“store-passwords = no” 注释掉或将其值设置成true。

继续阅读