Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I prevent SVN from caching credentials for a single repository?

I'm using Collabnet SVN client versions 1.5 & 1.6. My local machine is running Windows Vista x64 (I know, very sad indeed). I would like to force authentication every time I try to perform any subversion operations on a selected repository. How might I set a property or setting to require authentication every time? Thanks for the help and suggestions!

like image 715
mkelley33 Avatar asked Nov 01 '09 16:11

mkelley33


1 Answers

You have 2 Solutions:

  1. use the --no-auth-cache switch on all of your commands

  2. edit the Subverison config file (%APPDATA%\Subversion\config )and look for commented line:

# store-passwords = no

and remove the "#" at start of the line. This will switch off Password caching permanently.

like image 67
Peter Parker Avatar answered Oct 04 '22 15:10

Peter Parker