For pulling code on git, report “error: RPC failed; curl 56 OpenSSL SSL_read: SSL_ERROR_Syscall, errno 10054” solution

The main reason is the problem of security settings:

First execute git config http.sslVerify “false” if the following error occurs

git config http.sslVerify “false” fatal: not in a git directory  

Then continue to execute    git config --globle http.sslVerify "false"

The problem is solved

 

Similar Posts: