How to change password using TortoiseSVN?

后端 未结 7 623
梦如初夏
梦如初夏 2021-02-01 02:20

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 ar

相关标签:
7条回答
  • 2021-02-01 02:56

    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/

    0 讨论(0)
  • 2021-02-01 02:59

    Replace the line in htpasswd file:

    go to: http://www.htaccesstools.com/htpasswd-generator-windows/

    (if the link is expired, search another generator from google.com)

    Enter your username and password. The site will generate encrypted line. Copy that line and replace it with the previous line in the file "repo/htpasswd".

    You might also need to 'clear' the 'Authentication data' from tortoisSVN -> settings -> saved data

    0 讨论(0)
  • 2021-02-01 03:05

    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.

    0 讨论(0)
  • 2021-02-01 03:06

    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.

    0 讨论(0)
  • 2021-02-01 03:08

    I changed windows password today then Tortoise declined to connect me to SVN server. I got around it by opening a Dos box and doing an "svn co ...". It prompted for the new credential then happily did its work. After that, Tortoise works also.

    0 讨论(0)
  • 2021-02-01 03:11

    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.

    0 讨论(0)
提交回复
热议问题