天天看點

在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。

繼續閱讀