How to change user credentials in Subclipse?

前端 未结 7 1577
你的背包
你的背包 2021-02-03 22:15

I am using Subclipse (Subversion integration in Eclipse). I now want to change the user credentials in subclipse. How do I do that? That is to login into subversion using anothe

7条回答
  •  悲&欢浪女
    2021-02-03 22:59

    Delete, or rename, the Eclipse '.keyring' file in Eclipse's configuration folder. This is where the Subclipse SVNKit connector caches your SVN credentials..

    [ECLIPSE INSTALL]\configuration\org.eclipse.core.runtime.keyring

    If, on the other hand, you're using the JavaHL connector -- or SVN command-line -- then their credentials are stored in the Subversion runtime config folder. Delete or rename the credential file.

    On Windows: %APPDATA%\Subversion\auth
    On Linux and OSX: ~/.subversion/auth

    Sorry about this pig of complexity, for what should be a real version-control system. :-(

提交回复
热议问题