SSL certificate problem: unable to get local issuer certificate 解决方法

SSL certificate problem: unable to get local issuer certificate

今天在使用Git的时候遇到了这样的问题
SSL certificate problem: unable to get local issuer certificate 解决方法
和**SSL认证(Secure socket layer)**有关,让Git忽略掉SSL认证错误,
关闭sslverify就ok了
具体操作

  git config --system http.sslverify false
//范围为全局用户

 git config --global http.sslverify false
 //影响范围为系统当前用户
git config http.sslverify false
//修改当前仓库,需要cd到仓库目录下执行
上一篇:数字 证书


下一篇:『踩坑记录』git clone报错fatal: unable to access ‘URL‘: error setting certificate verify locations