SVN 要求输入哪个用户的密码?

SVN 要求输入哪个用户的密码?

我已以用户身份登录到我们的 SSH 服务器restoldyaffotst1

然后(将密码和哈希替换为 PASSWORD 和 HASH):

$ svn checkout svn://svn:[电子邮件保护]/logostudio/trunk/徽标
认证领域:HASH
‘restoldyaffotst1’ 的密码:
认证领域:HASH
用户名:^Csvn:E200015:无法连接到 URL 为“svn://svn:”的存储库[电子邮件保护]/logostudio/trunk/logo'
svn: E200015: 捕获信号

(我按下了 Ctrl+C)

SVN 到底要求我输入什么,Password for 'restoldyaffotst1'不是用户密码svn

答案1

您使用的语法无效。您将在以下页面中发现没有提及此语法:

存储库访问 URL

命令行身份验证

从输出svn help checkout

checkout (co): Check out a working copy from a repository.
usage: checkout URL[@REV]... [PATH]

  If specified, REV determines in which revision the URL is first
  looked up.

  If PATH is omitted, the basename of the URL will be used as
  the destination. If multiple URLs are given each will be checked
  out into a sub-directory of PATH, with the name of the sub-directory
  being the basename of the URL.

....

Global options:
  --username ARG           : specify a username ARG
  --password ARG           : specify a password ARG

相关内容