git:ERRO:connect to host github.com port 22: Connection timed out解决方法

git:ERRO:connect to host github.com port 22: Connection timed out解决方法
git 去远程仓库拉取代码,用的SSH还是https都是一样无法拉取,报端口号的错误。
解决步骤:如图所示(windows10系统)
git:ERRO:connect to host github.com port 22: Connection timed out解决方法
看下秘钥公钥是否都正常,然后尝试SSH是否连接正常?
依然是报错。
在当前目录下创建 touch config 文件
config 文件内容是:
Host github.com
User 【这里是填你的github账号】
Hostname ssh.github.com
PreferredAuthentications publickey
IdentityFile ~/.ssh/id_rsa
Port 443
其它内容都是一样
git:ERRO:connect to host github.com port 22: Connection timed out解决方法
重新测试下 ssh是否连接正常
选择 yes
就可以了
git:ERRO:connect to host github.com port 22: Connection timed out解决方法
可以正常拉取代码了。