I am trying to update the configuration of Subversion so that it does not store passwords in text form.
Is stores like plain text?
Windows passwords (for repositories) are always stored securely. This is only Linux where the problem arose.
SVN 1.6 adds two safe options for Linux users - GNOME Keyring and KDE KWallet. Both of them are compile-time parameters, so the binary you use should have support for one or both of them.
CollabNet binaries support GNOME Keyring. If you use SVN from the GNOME graphical desktop, it should "just work."
ADDON 1
Subversion clients store authentication data in. / subversion / auth for each area.
To delete cached data, go to the ".subversion / auth / svn.simple" folder and delete the specific file.
Disable caching by opening the config file in the .subversion folder and setting store-passwords and store-auth-creds to no or use the -no-auth-cache argument as a command line.
Somehow
[auth] ... password-stores =
may also help.
source share