views:

361

answers:

2

After having checked out once the repository to a folder, the svn command line client remembers the username and password (along with the repository url?). So, 2 questions arise:

  • is there a way to make it stop remembering the login info (and ask user/pass every time)?
  • is there a way to make it 'forget' the current login info (to delete the credentials already stored).

Thanks!

A: 

The SVN client should accept a --no-auth-cache option for this.

Victor Nicollet
+2  A: 

To make it forget the current credentials:
The credentials are cached somewhere in %APPDATA%\Subversion\auth Check the files in there to decide where to check, or remove all the files.

To make it stop remembering the login info: Edit %APPDATA%\Subversion\auth.

Set store-auth-creds=no

Sander Rijken