github连接报 "ssh: connect to host github.com port 22: Connection timed out" 错误

在连接github时,执行 ssh -T [email protected] 命令时,出现以下错误

ssh: connect to host github.com port 22: Connection timed out

解决办法

在存放公钥私钥(id_rsa 和 id_rsa.pub)的文件里,新建config文本,内容如下:
github连接报

Host github.com
User YourEmail@qq.com
Hostname ssh.github.com
PreferredAuthentications publickey
IdentityFile ~/.ssh/id_rsa
Port 443

注意 User为你登录github的账号名称。

再次执行 ssh -T [email protected] 时,会出现提示如下,回车”yes”即可。
github连接报

然后可以在输入一次命令测试下,是否成功.
这里写图片描述

成功!

你可能感兴趣的:(Git)