Git 克隆仓库报unable to get local issuer certificate错误解决方法

Posted shouke

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Git 克隆仓库报unable to get local issuer certificate错误解决方法相关的知识,希望对你有一定的参考价值。

 Git 克隆仓库报unable to get local issuer certificate错误解决方法

By:授客 QQ1033553122

 

问题描述

克隆gitlab上的仓库,报错,如下

 

$ git clone https://gitlab.xxx.net/qa/casstestmanage.git

Cloning into ‘casstestmanage‘...

fatal: unable to access ‘https://gitlab.xxx.net/qa/casstestmanage.git/‘: SSL certificate problem: unable to get local issuer certificate

 

 

原因分析

这是由于当你通过HTTPS访问Git远程仓库的时候,如果服务器上的SSL证书未经过第三方机构认证,git就会报错。因为未知的没有签署过的证书意味着可能存在很大的风险

解决办法

设置关闭SSL验证

步骤1:

$ env GIT_SSL_NO_VERIFY=true git clone https://gitlab.xxx.net/qa/casstestmanage.git

Cloning into ‘casstestmanage‘...

warning: You appear to have cloned an empty repository.

 

 

步骤2:

进入到上述仓库目录下执行 git config http.sslVerify false命令,以便执行其它命令时不报上述错误

$ cd casstestmanage

$ git config http.sslVerify false

 

命令相关说明:

git config --global http.sslverify false 命令的影响范围是系统当前用户

 

 

git config --system http.sslverify false,命令的影响范围是全局所有用户

 

git config http.sslverify false 命令影响范围仅针对当前仓库,需要在对应仓库目录下执行:

 

技术图片

 

 

 

以上是关于Git 克隆仓库报unable to get local issuer certificate错误解决方法的主要内容,如果未能解决你的问题,请参考以下文章

SSL certificate problem: unable to get local issue

Git SSL certificate problem: unable to get local issuer certificate

Git 拉取Gitee仓库报错:“fatal: unable to access ''": Failed to connect to 127.0.0.1 port 1080:

git clone 时出现fatal:unable to access 如下情况报错及解决办法

git clone报错:fatal: unable to access ‘‘: SSL certificate problem: unable to get local issuer cer

git clone报错:fatal: unable to access ‘‘: SSL certificate problem: unable to get local issuer cer