OpenSSL SSL_read: Connection was reset, errno 10054 solution

report error

When executing git push, I encountered an error message of ': OpenSSL SSL_read: Connection was reset, errno 10054.
insert image description here

explain

The server's SSL certificate has not been signed by a third-party organization, so an error is reported.
Cause of error: It may be caused by unstable network and connection timeout.

Solution

In the directory where the project is located, right-click and select Git Bash
insert image description here
to execute the following statement in it:

git config --global http.sslVerify "false"

again push, successDone
insert image description here

Guess you like

Origin blog.csdn.net/twi_twi/article/details/128138794