2015-08-28 90 views
2

我在fluxbox上使用svn 1.8。看來我必須設置store-plaintext-passwords = yes才能使密碼保存有效。但我不想以純文本保存我的密碼。svn - 如何保存密碼,但不是以純文本格式?

+3

根據您的桌面環境,顛覆可以支持其他密碼店['GNOME的鑰匙圈/ kwallet'(http://www.timelordz.com/wiki/Subversion_Password_Management)。 – Petesh

+0

@Petesh這種困擾我的 - 爲什麼它依賴於桌面環境?我在fluxbox上,我猜這是行不通的? – CodeNoob

+2

你應該可以得到gnome keyring在fluxbox上工作 - 谷歌在這方面是你的朋友。一旦你有一個安全的鑰匙圈工作,那麼你可以配置顛覆來處理它。 – Petesh

回答

2

~/.subversion/config文件只是添加有效的密碼存儲。例如我的配置:

### Section for authentication and authorization customizations. 
[auth] 
### Set password stores used by Subversion. They should be 
### delimited by spaces or commas. The order of values determines 
### the order in which password stores are used. 
### Valid password stores: 
### gnome-keyring (Unix-like systems) 
### kwallet (Unix-like systems) 
### gpg-agent (Unix-like systems) 
### keychain (Mac OS X) 
### windows-cryptoapi (Windows) 
password-stores = gpg-agent,gnome-keyring,kwallet 
### To disable all password stores, use an empty list: 
password-stores = yes 
相關問題