连接github时connection reset的问题

Posted by Nefelibata on Thu 2024-03-21 | | about 1 mins
Last Modified on Thu 2024-05-23

git连接时遇到问题

1ssh -T git@github.com
2Connection reset by 140.82.113.3 port 22

解决方案

在所生成ssh秘钥文件夹下(~/.ssh/)使用文本文档新建 config文件(无后缀)。

修改代码块中user的email为自己的email。

1Host github.com
2User  yourmail@xx.com
3Hostname ssh.github.com
4PreferredAuthentications publickey
5IdentityFile ~/.ssh/id_rsa
6Port 443

结果:连接成功,问题解决。

1ssh -T git@github.com
2Hi Syouth7! You've successfully authenticated, but GitHub does not provide shell access.

后续:又多次遇到这种情况,最后发现,其实只是github连接问题,连接不够顺畅,作罢