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

TortoiseSVN is not saving my auth details even when I check the save authentication check-box, and asking me to enter username and password every time I access it.
How can I fix this. Thanks.

share|improve this question

8 Answers

Easiest solution found from here:

The easiest way to do this is to right click in Windows Explorer, select Tortoise > Settings. Then in the Settings window select Network. Then in the SSH client set use the Tortoise SSH client, TortoisePlink, to use your username and password. For example:

[DRIVE LETTER]:[DIR]\TortoiseSVN\bin\TortoisePlink.exe -l foo -pw bar

for instance mine is

C:\Program Files\TortoiseSVN\bin\TortoisePlink.exe -l mysvnusername -pw mysvnpassword

I have tried this and Tsvn doesnot asks you for password for update or commit. I hope this helps.

share|improve this answer
If tortoise tries to put quotes around the whole thing, remove the quotes. – Jared Beck Feb 3 '12 at 19:20
Works nicely in Tortoise 1.7.9, Win 7 64bit, thanks. – Tom Sep 8 '12 at 22:44

If that helps, I had the same issue and I simply deleted this folder:

%APPDATA%\subversion\auth\

Next time I logged in it was created anew and my password was properly saved.

share|improve this answer
1  
This did the trick for me. Thx! – hjb417 May 27 '12 at 19:48

If you're using svn+ssh:// to access your repository, svn isn't involved in authentication at all so it simply can not save the authentication. In that case, you have to use an SSH tool like pageant to store your authentication data.

share|improve this answer
3  
How is this done? – Ben Feb 8 '12 at 13:47

Considering TortoiseSVN save the authentication informations in the:

# WindowsXp
"%APPDATA%"\subversion\auth
# or, for Windows7
"%APPDATA%"\Roaming\Subversion\auth

(see Where does TortoiseSVN save password cached files in Windows 7?)

You could check if you have any right issue in those directories (try to create a file in it).
Maybe another process block the access to the right authentication file: try rebooting, and see if the problem persist.

share|improve this answer

Here is what worked for me: in TortoiseSVN > Settings > Saved Data, click the Clear button near Authentication Data.

share|improve this answer
Solved the problem for me. Thanks! – jbandi Jan 23 at 6:56

If you have applications programmatically accessing Subversion, for instance via SharpSVN or SVNKit, your local authentication cache could be getting modified.

There's a simple fix for this--uncomment the following line in Subversion's local config file

store-auth-creds = no

This file is usually stored within the 'Application Data' directory. (Which is a hidden directory by default--unhide hidden folders in folder options). In XP and depending on your installation, this directory is usually at

C:\Documents and Settings\username\Application Data\Subversion

If this config file is not available in your version of TortoiseSVN you have to configure the same setting in the 'servers' file (within the same directory) as a group-based authentication setting. Portions of the config file have been deprecated since my build. My group is using TortoiseSVN 1.6.0, Build 15855.

share|improve this answer

I had exactly the same issue...

Had to add the following to my %APPDATA%\subversion\servers

store-passwords = yes

( i also added store-auth-creds = yes store-plaintext-passwords = yes for good measure)

share|improve this answer

I've found the easiest/best way to do this is check out the repository using a URL like:

svn+ssh://userid@host.com/path/to/repo

Putting the user name in there makes TortiseSVN/Plink use it in the future automatically. Combined with Pageant, you don't have to worry about anything. And it's not global so you can have different user names for different repositories.

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.