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

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.

share|improve this question

8 Answers

up vote 52 down vote accepted

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

Usernames and passwords

Subclipse does not collect or store username and password credentials when defining a repository. This is because the JavaHL and SVNKit client adapters are intelligent enough to prompt you for this information when they need to -- including when your password has changed.

You can also allow the adapter to cache this information and a common question is how do you delete this cached information so that you can be prompted again? We have an open request to have an API added to JavaHL so that we could provide a UI to do this. Currently, you have to manually delete the cache. The location of the cache varies based on the client adapter used.

JavaHL caches the information in the same location as the command line client -- in the Subversion runtime configuration area. On Windows this is located in %APPDATA%\Subversion\auth. On Linux and OSX it is located in ~/.subversion/auth. Just find and delete the file with the cached information.

SVNKit caches information in the Eclipse keyring. By default this is a file named .keyring that is stored in the root of the Eclipse configuration folder. Both of these values can be overriden with command line options. To clear the cache, you have to delete the file. Eclipse will create a new empty keyring when you restart

share|improve this answer
6  
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 May 27 '09 at 10:26
9  
Great answer. To make it easy for other users, on Windows 7 it is under C:\Users\%USER%\AppData\Roaming\Subversion\auth\ – Hbas Jan 17 '11 at 16:48
9  
If using SVNKit (instead of JavaHL), it caches information in a file named .keyring under configuration\org.eclipse.core.runtime\ inside Eclipse. Close Eclipse and delete the file. Eclipse will create a new empty keyring when restarted. – luiggitama Sep 29 '11 at 18:06
2  
On Windows 7 you find the folder with (paste into explorer address): %APPDATA%\Subversion\auth – Synox Aug 2 '12 at 14:34
On Linux, I needed to delete: $home/.subversion/auth/svn.simple/* – Jon Schneider Mar 19 at 20:53

Go to c:\Documents and Settings[username]\Application Data\subversion\auth\svn.simple

and delete the hexadecimal file. Normally each file is associated with one repository

share|improve this answer

On Mac OS X, go to folder /$HOME (/Users/{user home}/). You will see file '.eclipse_keyring'. Remove it. All saved credentials will be lost.

share|improve this answer

On Windows 7, go to C:\Users\%User_Name%\AppData\Roaming\Subversion and remove the auth directory. Just be aware if you are connected to more than 1 SVN server that this will remove the authentication for all of the SVN servers you have configured. If you want to reset just a single server:

Inside the auth directory you should see a folder called svn.simple. Open each of those files with a text editor to determine which one to remove and then remove just that single file.

share|improve this answer

On any Windows Version delete the following folder:

%APPDATA%\Subversion\auth

(You can copy&paste this to RUN/Explorer, and it will resolve the App-Data-Folder for you.)

On Linux and OSX it is located in

~/.subversion/auth

Source: http://www.techcrony.info/2008/03/26/admin/how-to-change-eclipse-svn-password/

share|improve this answer

I'm using svn+ssh protocol to access SVN. What I had to do to fix a similar issue, was to open Putty and reconfigure it so that it did not have wrong_user_name@myserver but correct_user_name@myserver in the saved sessions.

share|improve this answer

My wife suggested:

  1. Open SVN Repositories View
  2. Open Location Properties...
  3. Show Credentials For: press [X] button
  4. Select user, write password, press [Finish]

and all work!!!

share|improve this answer
That appears to be for Subversive, not Subclipse. Is that right? Using Subclipse, I see "Properties", not "Location Properties...", and the dialog that appears for that does not contain anything about user, password, or authentication at all. – L S Jan 4 at 19:16

Very simple step to follow: Eclipse: Window ----> Preferences -----> SVN -----> SVN Interface ----->Select SVNKit (pure Java)

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.