views:

4392

answers:

1

I have Eclipse 3.4.2 installed on Windows with subclipse. Another developer added an SVN repository with his credentials and selected 'Save password'. Now every time I do anything with SVN his cached credentials are used. How can I change them to mine?

I have already checked the 'workspace/.metadata/.plugins/org.tigris...' folders, and could not find any way to reset those cached credentials.

+3  A: 

http://subclipse.tigris.org/wiki/PluginFAQ#head-d507c29676491f4419997a76735feb6ef0aa8cf8

Milen A. Radev
So, in my case I've been using JavaHL, which cashes credential data in the Subversion runtime configuration area. On Windows this was in "C:\Documents and Settings\%USER%\Application Data\Subversion\auth\svn.simple" in one of the files with a long HEX name. Opening them in notepad, locating the one with my colleagues credentials and deleting it solved the problem.Thanks for your help!
Slink84