Saving multiple credentials in a turtle

I am working on several projects in different repositories of subversive activities using a turtle. How to save credentials for all my projects, so I don’t need to enter a username / password every time? If I save the credentials, only the most recent credentials are saved, forcing me to clear the cache before using the turtle in another project.

Thank you Thomas

+6
credentials tortoisesvn
source share
2 answers

Credentials are stored for each row of the authentication rule. If you want to use different authentication information for different repositories, specify the name of the repository in the line area of ​​your server.

+2
source share

I also use XP-Dev with more than one login and had the same problem.

I used the following svn command line for the initial check:

svn checkout http://xp-dev.com/svn/ProjectName c:\dev\projectfolder --username myusername --password mypassword 

This checked the project and the credentials were saved so that Tortoise SVN would work after that.

+5
source share

All Articles