如何在Windows上使用Linux上创建的git的ssh密钥?
我使用的是 ubuntu Linux 11.10。按照这些步骤生成私钥。
现在我想在安装了 msysgit 的 Windows 上使用相同的密钥。
尝试将“~/.ssh/id_rsa”复制到“C:/Users/user_name/.ssh/id_rsa”,但这没有帮助。
接下来去哪里?
I'm using ubuntu linux 11.10. Generated private key following these steps.
Now I want to use same key on windows which has msysgit installed.
Tried copying "~/.ssh/id_rsa" to "C:/Users/user_name/.ssh/id_rsa", but that didn't help.
Where to go next?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
首先检查那里是否也有 .pub。如果您这样做并继续遇到问题,这就是我所做的类似事情的方式:
并重新测试。如果 ssh-add 表示无法联系 ssh 代理,请尝试设置运行 ssh-agent 输出的环境变量(它应该输出类似“SSH_AUTH_SOCK=something”的内容,因此使用“set SSH_AUTH_SOCK=something”进行设置)并重试。
First check if you have .pub there also. If you do and keep on having issues, this is how I've done something similar:
and retest. If ssh-add says it couldn't contact ssh agent, try setting the environment variables that running ssh-agent outputted (it should've outputted something like "SSH_AUTH_SOCK=something", so set that with "set SSH_AUTH_SOCK=something") and retry.
我的 ssh-add 说它无法联系 ssh 代理。然而,我可以通过 ssh 进行 git 操作,而无需烦人的密码请求。这是因为 id_rsa 是自动捕获的。我可以在 ~HOME/.ssh/config 文件中添加其他 rsa/dsa 文件作为 IdentityFile 文件。
My ssh-add says that it couldn't contact ssh agent. Yet, I can git over ssh without the annoying password request. This is because id_rsa is captured automatically. I can add other rsa/dsa files as IdentityFile fileds in ~HOME/.ssh/config file.