git clone遇到报错“SSL certificate problem: self signed certificate”

avatar
作者
筋斗云
阅读量:0

在git clone的时候发现遇到了一个问题:

crist@DESKTOP-JKRNKSH MINGW64 ~/Desktop $ git clone -b dev https://xxx.xxx.xxx.xxx:3001/crist/AVM_V9M.git Cloning into 'AVM_V9M'... fatal: unable to access 'https://xxx.xxx.xxx.xxx3001/crist/AVM_V9M.git/': SSL certificate problem: self signed certificate 

在这里只需要在终端中输入

git config --global http.sslVerify "false"

再重新尝试git clone 就可以成功

这个错误通常是由于Git无法验证服务器的SSL证书导致的。

以下几种方法来解决这个问题:

  1. 忽略SSL证书验证:在执行git clone命令时,添加-c http.sslVerify=false参数,这会让Git在克隆时忽略SSL证书验证。但这样做可能会存在安全风险,因为Git不再验证服务器的身份。

    git -c http.sslVerify=false clone [repository_URL]
  2. 更新Git配置:运行以下命令来更新Git的全局配置,告诉Git使用系统的证书库。

    git config --global http.sslBackend schannel
  3. 更新证书文件:有时候证书文件可能已过期或损坏,你可以尝试更新证书文件。

  4. 添加自签名证书:如果你有自签名的SSL证书,你可以将其添加到Git的证书信任列表中。

  5. 检查网络设置:有时候网络代理或防火墙设置可能会导致SSL连接问题,确保网络设置正确并且没有阻止Git的连接。

    广告一刻

    为您即时展示最新活动产品广告消息,让您随时掌握产品活动新动态!