Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Where does TortoiseSVN save password cached files in Windows 7?

I found c:\users\USERNAME\AppData\TSVNCache directory, but it is empty.

share|improve this question

5 Answers

up vote 11 down vote accepted

In c:\Users\USERNAME\AppData\Roaming\Subversion\.

share|improve this answer
4  
Yes, by default all users of the subversion api (read: most subversion clients) store their settings in %appdata%\Subversion. The passwords are stored in the auth directory below that directory. TortoiseSVN has a clear authentication data button on its 'Saved Data' settings tab (TortoiseSvn->Settings). AnkhSVN has an option to delete only authentication token for a specific server. – Bert Huijben Apr 8 '10 at 9:33

%APPDATA%\Subversion\auth

It is documented in the TortoiseSVN Help document file (CHM)

share|improve this answer
1  
+1 for using %APPDATA% – Jeroen Wiert Pluimers May 15 at 10:15

Use the Sysinternals file/registry access watch tool to find out for sure.

DiskMon is an application that logs and displays all hard disk activity on a Windows system. You can also minimize DiskMon to your system tray where it acts as a disk light, presenting a green icon when there is disk-read activity and a red icon when there is disk-write activity.

Process Monitor is an advanced monitoring tool for Windows that shows real-time file system, Registry and process/thread activity. It combines the features of two legacy Sysinternals utilities, Filemon and Regmon, and adds an extensive list of enhancements including rich and non-destructive filtering, comprehensive event properties such session IDs and user names, reliable process information, full thread stacks with integrated symbol support for each operation, simultaneous logging to a file, and much more. Its uniquely powerful features will make Process Monitor a core utility in your system troubleshooting and malware hunting toolkit.

Start these applications and create a new checkout of any passworded repository.

share|improve this answer

For Windows XP, it's stored at

C:\Documents and Settings\<<username>>\Application Data\Subversion\auth

Remove the auth folder, and when you access the SVN repository again you will be asked for the username and password.

share|improve this answer

For most Linux distributions it's

~/.subversion/auth/
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.