SVN client has a built-in system for caching authentication credentials on disk. It saves the credentials in the user's private runtime configuration area
~/.subversion/auth/ (Unix-like systems)
%APPDATA%/Subversion/auth/ (Windows)
If you dont want to catch the credeitials for a commit, use --no-auth-cache.
$ svn commit --no-auth-cache
Here we are telling the svn client that dont cach authentication credentials.
You can disable credential caching permanently by editing your runtime config file (located next to the auth/ directory). Set store-auth-creds to no.
[auth]
store-auth-creds = no
~/.subversion/auth/ (Unix-like systems)
%APPDATA%/Subversion/auth/ (Windows)
If you dont want to catch the credeitials for a commit, use --no-auth-cache.
$ svn commit --no-auth-cache
Here we are telling the svn client that dont cach authentication credentials.
You can disable credential caching permanently by editing your runtime config file (located next to the auth/ directory). Set store-auth-creds to no.
[auth]
store-auth-creds = no
Comments