本来不想写一些技术文章的,可是这个问题在我的各台终端上都多次出现,为了方便找,所以还是写成一篇文章。

问题检查

ssh-add -L 提示 Error connecting to agent: No such file or directory 说明 ssh agent 烂掉了。

启动 ssh-agent

首先需要确保是有ssh服务的。但正常情况下能ssh都有,所以跳过。

其次要确保有ssh-agent,这个东西正常情况下也是有的。

在powershell中输入Start-Service ssh-agent即可启动。

恢复测试

ssh-add -L 显示自己的公钥。如果没有的话手动添加私钥即可。

ssh -A [email protected] forward agent到服务器。

ssh -T [email protected]测试与github的连通性。