Reputation: 61
I instaled Tortoise SVN 1.8.7 in Windows 7 Professional 64 bits.
The Tortoise always ask for save the password, but stiling not save :(
I clear path AppData\Roaming\Subversion multiple times, but is not saving anithing on svn.simple
The connection is made by a certificate.
Can anybody tell me me the trick i was missing ? :)
Thanks
Upvotes: 6
Views: 11067
Reputation: 185
When Tortoise SVN was not saving my user/password credentials I solved the problem by going to TortoiseSVN settings -> Saved Data -> Clear Authentication data (see image below). Also check AllowAuthSave is set to true in TortoiseSVN settings -> Advanced.
If this doesn't work then there may be further set-up required where certificates are involved which I am unfamiliar with.
I hope this helps.
Upvotes: 16
Reputation: 107090
Whether or not to store passwords is set by the Subversion configuration file.
TortoiseSVN->Settings
.password-stores = windows-cryptoapi
is enabled. (I believe this is the default anyway) by removing the #
in front of the line.store-passwords = no
and store-auth-creds = no
. Change the no
to a yes
, and remove the #
at the beginning of the line.Save the changes, and close the initial settings box by clicking on Ok. Next time, when Subversion asks for the password, it will store it.
Upvotes: 4