Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to change password using TortoiseSVN?

I need to change my SVN password. I am using TortoiseSVN client. I am not able to find the password change or add user option.

Is it possible? Is there any work around or command line syntax to create an SVN user or edit users?

like image 787
Himanshu Avatar asked Oct 27 '10 13:10

Himanshu


People also ask

Where does SVN save passwords?

On Windows, the Subversion client stores passwords in the %APPDATA%/Subversion/auth/ directory.

How do I access TortoiseSVN from command line?

Locate TortoiseSVN and click on it. Select "Change" from the options available. Refer to this image for further steps. After completion of the command line client tools, open a command prompt and type svn help to check the successful install.


4 Answers

To change your password for accessing Subversion

Typically this would be handled by your Subversion server administrator. If that's you and you are using the built-in authentication, then edit your [repository]\conf\passwd file on your Subversion server machine.

To delete locally-cached credentials

Follow these steps:

  • Right-click your desktop and select TortoiseSVN->Settings
  • Select Saved Data.
  • Click Clear against Authentication Data.

Next time you attempt an action that requires credentials you'll be asked for them.

If you're using the command-line svn.exe use the --no-auth-cache option so that you can specify alternate credentials without having them cached against your Windows user.

like image 140
Neil Barnwell Avatar answered Oct 10 '22 02:10

Neil Barnwell


Password changes are handled by the subversion server administrator. As a user there is no password change option.

Check with your server admin.

If you are the admin, find your SVN Server installation. If you don't know where it is, it could be listed in Start->Programs, running under services in Start->Control Panel->Services or it could be listed under C:\Program Files.

The SVN Server should have an application to run to add/change/delete authentication and users.

like image 37
Nathan Taylor Avatar answered Oct 10 '22 00:10

Nathan Taylor


On the server.. In our environment, we're running Apache2 on Windows Server 2003.
Suppose Apache is serving our repository from C:\repo\MyProject

The actual repository is in C:\repo\MyProject\db

and the configuration is in C:\repo\MyProject\conf

So the passwords are in: C:\repo\MyProject.htaccess

They're encrypted, a tool similar to this: http://tools.dynamicdrive.com/password/

like image 2
Chris Thornton Avatar answered Oct 10 '22 01:10

Chris Thornton


You can't change your password through TortoiseSVN. Authentication to the SVN server has to be changed within the SVN server itself.

How you actually achieve this depends on which SVN Server is housing the repository and how the SVN Server was laid out on your computer.

n a Windows environment, credentials are typically stored in <yoursvnroot>\conf\passwd.

In a Linux environment it could be as above, or a myriad of other ways depending on how it's hosted.

like image 3
Chris Wallis Avatar answered Oct 10 '22 01:10

Chris Wallis