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

I was setting up another user to use our SVN repository. He didn't have a username/passowrd, so I logged in with my credentials. We now have a username/password for him.

How do I get TortoiseSVN to let me enter the new username/password?

share|improve this question

4 Answers

up vote 76 down vote accepted

In TortiseSVN settings (found via the right-click menu), open the Saved Data tab, and clear out the Authentication Data. The side effect is that it clears out all authentication data, and you will have to re-enter your own username/password.

share|improve this answer
1  
I am using tortoise svn client on Windows 7. For my case in Saved Data tab, the Clear button for Authentication data is disable so deleting cache file solution worked for me well. – M. Atif Riaz Nov 19 '12 at 12:08

There are several ways to do it, through settings or by deleting the cache.

Deleting the cache is the most versatile method. First, locate it:

On XP, it was located here:

C:\Documents and Settings\%USER%\Application Data\Subversion\auth\svn.simple\

On Vista, it was located here:

C:\Users\%USER%\AppData\Roaming\Subversion\auth\svn.simple\

Then look in those files with Notepad, and delete the one with your credentials.

share|improve this answer
9  
%APPDATA%\Subversion\auth\svn.simple\ should work everywhere (XP, Vista, 7) – landrain May 16 '11 at 11:36
2  
In my case, I could not locate a file that described the realm in svn.simple. Instead, I found it in svn.ssl.server; by deleting it I had to accept the certificate, but surely enought was prompted for credentials. – Paul Lammertsma Jan 18 '12 at 11:21

enter image description here

  1. Right click
  2. TortoiseSVN
  3. Settings
  4. Saved Data
  5. Authentication data - Clear
share|improve this answer

You can't change your password through Tortoise, it has to be changed on the SVN server itself. As administrator only have the permission to change the password

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.