This is because when you access git remote warehouse through HTTPS, GIT will report an error if the SSL certificate on the server is not authenticated by a third-party authority. The reason is that unknown unsigned certificates mean that there may be a great risk. The solution is to turn off SSL verify in Git with the following command
This command affects the current user of the system
git config –global http.sslverify false
If you want to set all users globally, you can change it to this:
git config –system http.sslverify false
If you only want to set for the current warehouse, you can execute it under the warehouse directory to be modified
git config http.sslverify false
Modified git configuration C: \ program files \ git \ etc:
Turn: https://www.cnblogs.com/jaxu/p/12027839.html
Similar Posts:
- [Solved] server certificate verification failed. CAfile: none CRLfile: none
- Git diff indicates the change of FileMode (old mode 100644, new mode 10075)
- Git submission error self signed certificate
- [git/tower]SSL certificate problem: Invalid certificate chain
- For pulling code on git, report “error: RPC failed; curl 56 OpenSSL SSL_read: SSL_ERROR_Syscall, errno 10054” solution
- [Solved] Git Submit Error: (OpenSSL SSL_read: Connection was reset, errno 10054)
- [Solved] Github Push Error: OpenSSL SSL_connect: SSL_ERROR_SYSCALL in connection to github.com:443
- IDEA unable to access ‘https://github.com/Blank/xxx.git/’: error setting certificate verif
- [Solved] git clone Error: SSL certificate prob lem: self signed certificate
- [Solved] fatal: unable to access ‘https://github.com/tsinglink/uvccamera.git/’: OpenSSL SSL_read: Connection was reset, errno 10054