git clone 报错fatal: unable to access ‘https://github.com/xxxx‘: OpenSSL SSL_read

fatal: unable to access ‘https://github.com/xiaohei0131/mc.git/’: OpenSSL SSL_read: Connection was reset, errno 10054报错
insert image description here

Cause: Generally, this is because the SSL certificate of the server has not been signed by a third-party organization, so an error is reported.
After canceling the SSL verification, just git again.
The solution is to enter this git command

git config --global http.sslVerify “false”

insert image description here

Guess you like

Origin blog.csdn.net/qq_44333320/article/details/130680941