Aaron
Aaron

Reputation: 883

How do I change my SVN account in subclipse

I am running eclipse Version: 3.5.2 Build id: M20100211-1343 with the subclipse plugin 1.6.4 I have saved my password, but now I need to change the account I connect with.

How do I do that?

My coworker has Version: Helios Release Build id: 20100617-1415 and subclipse 1.6.14 but no Application data folder.

Where might subclipse hide its config data if there is no Application Data folder?

Upvotes: 3

Views: 13522

Answers (2)

esharp
esharp

Reputation: 1317

On Ubuntu the files in ~/.subversion/auth/svn.ssl.server were just trusted SSL certs. You want to locate a file called .keyring (mine was eclipse/configuration/org.eclipse.core.runtime/.keyring) and delete that- next time you try to interact with your SVN repo you will be prompted for your credentials.

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

Upvotes: 1

Michael Goldshteyn
Michael Goldshteyn

Reputation: 74330

I think you need to clean the Subversion credentials storage:

~/.subversion/auth on Linux and OSX
USER_HOME\Application Data\Subversion\auth\svn.simple directory on Windows

You may also want to read the excellent article on changing credentials here:

Changing subclipse credentials on Windows
Changing subclipse credentials on Linux/OSX [Under 1.7 (Usernames and Passwords)]

Upvotes: 4

Related Questions