SSL certificate problem: self signed certificat

今天在idea中给当前项目多加一个git地址,报如下错误:SSL certificate problem: self signed certificat

问题原因:公司gitlab只支持https地址,需要client配置忽略https证书检验

解决方案:打开Git Bash运行如下命令

export GIT_SSL_NO_VERIFY=true

git config --global http.sslVerify “false”

你可能感兴趣的:(git,ssl,git,网络协议)