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

Posted e-dreamer-blogs

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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"即可。

技术图片

这时验证就可以通过。

技术图片

 

 

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

技术图片

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

以上是关于git上传代码报错ssh: connect to host github.com port 22: Connection timed out解决办法的主要内容,如果未能解决你的问题,请参考以下文章

failed to connect to gitee.com port 443: timed out

$ ssh -T git@github.com ssh: connect to host ssh.github.com port 22: Connection timed out

git push上传代码到gitlab上,报错401或403

git clone遇到的[ssh: connect to host github.com port 22]

ssh登陆报错:packet_write_wait: Connection to x.x.x.x port 22: Broken pipe

Git 之 解决git clone报错(Failed to connect to xxxxxx port 80: Timed out) 以及 git 的相关常用配置