在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证书导致的。
以下几种方法来解决这个问题:
-
忽略SSL证书验证:在执行
git clone
命令时,添加-c http.sslVerify=false
参数,这会让Git在克隆时忽略SSL证书验证。但这样做可能会存在安全风险,因为Git不再验证服务器的身份。git -c http.sslVerify=false clone [repository_URL]
-
更新Git配置:运行以下命令来更新Git的全局配置,告诉Git使用系统的证书库。
git config --global http.sslBackend schannel
-
更新证书文件:有时候证书文件可能已过期或损坏,你可以尝试更新证书文件。
-
添加自签名证书:如果你有自签名的SSL证书,你可以将其添加到Git的证书信任列表中。
-
检查网络设置:有时候网络代理或防火墙设置可能会导致SSL连接问题,确保网络设置正确并且没有阻止Git的连接。