我在 Windows 上使用 SVN 作为 SharpSVN 库的一部分。我需要以纯文本形式存储我的密码。我尝试将以下内容放入我的servers
文件中:
store-passwords = yes
store-plaintext-passwords = yes
store-auth-creds = yes
store-ssl-client-cert-pp-plaintext = yes
以下是文件中的内容config
:
### To disable all password stores, use an empty list:
password-stores =
然而,这是我检出存储库后在 \auth\svn.simple\0675.. 文件中看到的内容:
K 8
passtype
V 8
wincrypt
K 8
password
V 372
AQAA...
我在这里做错了什么?
答案1
根据SVN手册,配置选项store-plaintext-passwords
不能强制 Subversion 客户端以纯文本(例如,以未加密的形式)存储密码。
该选项的任务是控制 Subversion 客户端在无法以非纯文本形式保存密码时如何反应。