Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I make svn command line client to forget the login credentials on windows (sliksvn)?

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!

like image 513
DanC Avatar asked Dec 21 '09 22:12

DanC


People also ask

Where are my svn credentials stored?

On Windows, the Subversion client stores passwords in the %APPDATA%/Subversion/auth/ directory.


1 Answers

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:

  1. Edit %APPDATA%\Subversion\config.

  2. Set store-auth-creds=no

like image 52
Sander Rijken Avatar answered Sep 24 '22 07:09

Sander Rijken