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

在github上用https克隆代码时报了如下错误
在这里插入图片描述

fatal: unable to access 'https://github.com/xiaogao67/gin-cloud-storage.git/': SSL certificate problem: unable to get local issuer certificate

这是由于当你通过HTTPS访问Git远程仓库的时候,如果服务器上的SSL证书未经过第三方机构认证,git就会报错。原因是因为未知的没有签署过的证书意味着可能存在很大的风险。解决办法就是通过下面的命令将git中的sslverify关掉:
在这里插入图片描述

git config --global http.sslverify false

然后在执行克隆操作就成功了。
在这里插入图片描述