fatal: unable to access 'xxx.git/': OpenSSL SSL_read: Connection was aborted, errno 10053

fatal: unable to access '.git/': OpenSSL SSL_read: Connection was aborted, errno 10053

解决:
因为服务器的SSL证书没有经过第三方机构的签署
解除ssl验证后,再次git即可

git config --global http.sslVerify "false"

参考:
OpenSSL SSL_read: Connection was reset, errno 10054

你可能感兴趣的:(fatal: unable to access 'xxx.git/': OpenSSL SSL_read: Connection was aborted, errno 10053)