fatal: unable to access 'https://github.com/xx/xx.git/': Failed to conn

103 阅读1分钟

fatal: unable to access 'github.com/circlexia/h…': Failed to connect to github.com port 443 after 21164 ms: Timed out
【产生原因】一般是因为服务器的[SSL证书]没有经过第三方机构的签署,所以才报错
【解决方式】解除ssl验证后,再次git即可
只需win+R=>cmd=>git config --global http.sslVerify false

git config --global http.sslVerify false