git clone: SSL certificate problem: self signed certificate error resolution

Pulling the code warehouse for the first time, if it is the https method, SSL certificate problem: self signed certificatean error may be reported, and the solution is as follows:

export GIT_SSL_NO_VERIFY=true
git config --global http.sslVerify "false"

Take a note.

Guess you like

Origin blog.csdn.net/sinat_36050376/article/details/124171292