问题描述:
Gitbash:ssh -T git@github.com检查连接情况时,出现下面报错:
ssh_dispatch_run_fatal: Connection to 13.229.188.59 port 22: Software caused connection abort
原因:dns解析问题
打开cmd输入ping命令查看github.com是否可以连接
解决方案:配置本地hosts文件
打开文件地址:C:\Windows\System32\drivers\etc\hosts
在此文件末尾加上以下内容:
192.30.255.112 github.com git
185.31.16.184 github.global.ssl.fastly.net
Gitbash再次ssh -T git@github.com,成功