使用msysgit Bash on Windows
时,需要执行下面的命令才能成功启动。否则接下来使用ssh-add
时会出现Could not open a connection to your authentication agent
的错误,错误代码如下:
$ git push heroku master
Warning: Permanently added the RSA host key for IP address '50.19.85.132' to the list of known hosts.
!Your key with fingerprint b7:fd:15:25:02:8e:5f:06:4f:1c:af:f3:f0:c3:c2:65 is not authorized to access bitstarter.
我试图添加密钥,又收到了下面的错误代码:
$ ssh-add ~/.ssh/id_rsa.pub
Could not open a connection to your authentication agent.
解决办法?
需要在运行ssh-add
命令之前启动 ssh-agent
:
eval `ssh-agent -s`
ssh-add
请注意,这将在Windows上启动msysgit Bash的代理。如果您使用的是其他shell或操作系统,则可能需要使用该命令的变体。
《无法打开与身份验证代理的连接》有1条评论