我正在尝试更新我的 Subversion 配置,以便它不会以明文形式存储密码。我知道您需要更新 ~/.subversion/servers 文件中的配置以通过添加一行来防止这种情况:“store-plaintext-passwords = no”。
我已经这样做了,但是我的 Subversion 客户端继续向我显示标准警告:
———————————————————————————————————-
ATTENTION! Your password for authentication realm:
RainStorm Subversion Repository
can only be stored to disk unencrypted! You are advised to configure
your system so that Subversion can store passwords encrypted, if
possible. See the documentation for details.
You can avoid future appearances of this warning by setting the value
of the ‘store-plaintext-passwords’ option to either ‘yes’ or ‘no’ in
’/home/.subversion/servers’.
———————————————————————————————————-
Run Code Online (Sandbox Code Playgroud)
我已经尝试从终端注销并重新登录,但这似乎没有什么区别。我认为对于 SVN,它只是一个 CLI 工具,而不是一个我必须重新启动的守护进程,但我并不乐观。
可能会发生什么?