git上传代码报错ssh: connect to host github.com port 22: Connection timed out解决办法

当在远程库上设置了SSH 之后还是报错连接超时,问题如下

$ git push origin master

报错:

ssh: connect to host github.com port 22: Connection timed out
fatal: Could not read from remote repository.

Please make sure you have the correct access rights
and the repository exists.

这个时候需要检查一下SSH是否能够连接成功,输入以下命令

ssh -T git@github.com

稍等片刻如果继续报错,如下:

ssh: connect to host github.com port 22: Connection timed out则,可以使用一下解决办法

打开存放ssh的目录

cd ~/.ssh 

ls

查看是否存在 id_rsa   id_rsa.pun  known_hosts 三个文件,如果没有移步解决办法:

1. vim config (进入到vim编辑界面)

2. insert 编辑模式

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

其中, YourEmail 为绑定的邮箱。 

保存之后再次执行"ssh -T git@github.com"时,会出现如下提示,回车"yes"即可。

git上传代码报错ssh: connect to host github.com port 22: Connection timed out解决办法

这时验证就可以通过。

git上传代码报错ssh: connect to host github.com port 22: Connection timed out解决办法

 

 

 最后就可以继续上传代码了。 

git上传代码报错ssh: connect to host github.com port 22: Connection timed out解决办法

本文解决方法参考 : https://blog.csdn.net/qq_42146613/article/details/82772734

git上传代码报错ssh: connect to host github.com port 22: Connection timed out解决办法

上一篇:netty高性能原理与架构分析


下一篇:JS 转 gbk 编码与 iconv-lite 探究