Git问题:解决“ssh:connect to host github.com port 22: Connection timed out”

问题:git push时出现ssh_dispatch_run_fatal错误的解决办法

解决方法

根据博客里面说的,打开cmd输入ping命令查看github.com的连接,确实是网站连接问题,至于什么本地DNS无法解析什么的本人也不懂

这里写图片描述

2.找到C:\Windows\System32\drivers\etc\hosts,打开,建议使用notepad++打开,因为修改需要权限,notepad++可以方便的获取权限修改

在末尾添加上下面这段文字,保存

192.30.255.112  github.com git 
185.31.16.184 github.global.ssl.fastly.net 

 检查是否成功

ssh -T [email protected]

Git Push 时,出现 ssh_dispatch_run_fatal 错误的解决办法_ppxin的博客-CSDN博客_ssh_dispatch_run_fatal: connection to 20.205.243.1

你可能感兴趣的:(Git,git,ssh,github)