Git报错解决:fatal: unable to access 'https://github.com/.......': OpenSSL SSL_read: Connection was re...

git push时报了这个错:fatal: unable to access 'https://github.com/.......': OpenSSL SSL_read: Connection was reset, errno 10054

image.png

产生原因:一般是这是因为服务器的SSL证书没有经过第三方机构的签署,所以才报错

参考网上解决办法:解除ssl验证后,再次git即可

git config --global http.sslVerify "false"
image.png

你可能感兴趣的:(Git报错解决:fatal: unable to access 'https://github.com/.......': OpenSSL SSL_read: Connection was re...)