Subversion ignoring “--password” and “--username” options

后端 未结 7 1662
别跟我提以往
别跟我提以往 2020-12-13 06:14

When I try to do any svn command and supply the --username and/or --password options, it prompts me for my password anyways, and always will attemp

相关标签:
7条回答
  • 2020-12-13 06:42

    I had this same issue and solved it by setting up my ~/.ssh/config file to explicitly use the correct username (i.e. the one you use to login to the server, not your local machine). So, for example:

    Host server.hostname
      User username
    

    I found this blog post helpful: http://www.highlevelbits.com/2007/04/svn-over-ssh-prompts-for-wrong-username.html

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