使用备用用户名检查 svn 项目时遇到困难
我正在尝试从学校服务器签出一个项目,但它尝试使用我的计算机登录名而不是我的服务器登录名,因此失败。
我的命令:
svn checkout svn+ssh://[server name and stuff]/[school login name]
它说:
[computer login]@[server name]'s password:
不存在。
我尝试使用 --username
参数:
svn checkout --username [school login] svn+ssh://[server name and stuff]/[school login name]
但它为同一个不存在的用户请求相同的密码。我的结账命令做错了什么?
I'm trying to check out a project from a school server, but it attempts to use my computer login name instead of my server login name, so it fails.
my commands:
svn checkout svn+ssh://[server name and stuff]/[school login name]
and it says:
[computer login]@[server name]'s password:
which doesn't exist.
I attempted to use the --username
parameter:
svn checkout --username [school login] svn+ssh://[server name and stuff]/[school login name]
but it requests the same password for the same nonexistent user. What am I doing wrong with my checkout command?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试
Try
两件事:
(1)清除所有客户端凭据缓存
http://chestofbooks。 com/computers/revision-control/subversion-svn/Client-Credentials-Caching-Serverconfig-Netmodel-Credcache.html
(2) 学校的服务器是否配置错误(或故意这样配置)?例如,它可能通过硬连线要求您从学校计算机进行连接。
Two things:
(1) clear out all client credentials cache
http://chestofbooks.com/computers/revision-control/subversion-svn/Client-Credentials-Caching-Serverconfig-Netmodel-Credcache.html
(2) Is the school's server misconfigured (or intentionally configured that way)? For example, it may be hardwired to require you to connect from a school computer.