git push 报错:fatal: unable to access 'github.com/xxx/xxx.git…': Failed to connect to github.com port 443 after 21028 ms: Couldn't connect to server
原因:一般是因为服务器的SSL证书没有经过第三方机构的签署,所以才报错。
解决方法:
解除SSL验证:git config --global http.sslVerify “false”
再次 git push 即可