Reputation: 23
I have 2 repositories and I'm using the same username to access them, but with different passwords (the 2 repos are on the same server but I need different credentials for each repo). In Eclipse (Version: Indigo Service Release 1, Build id: 20110916-0149) with the Subclipse SVN plugin if I click 'Remember password' for one repository, then it won't work for the other (since it's the same username, so it'll prompt for password). Is it possible to have the credentials stored "per repository" and not global (i.e. to have 2 accounts with same username but different password, one for repo1 and the other for repo2)?
Upvotes: 2
Views: 713
Reputation: 15525
Not an answer, but a hint what to check further:
c:\Users\<USERNAME>\AppData\Roaming\Subversion\
auth/svn.simple
.It contains for each SVN repository (not: server) a file with information about the repo and the user ID and password that SVN uses to authenticate to the server.
V 65
<http://server.name:80> Subversion MYREPO
This indicates, that it could be different for each repo. I have two entries for the same server, but different repos. Because we use LDAP, the crypted passwords are the same
So you could delete the entries, and try the following steps again:
auth/svn.simple
.I hope that helps to debug your problem.
Upvotes: 1