在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关掉:
文章来源:https://www.toymoban.com/news/detail-504002.html
git config --global http.sslverify false
然后在执行克隆操作就成功了。
文章来源地址https://www.toymoban.com/news/detail-504002.html
到了这里,关于SSL certificate problem: unable to get local issuer certificate解决办法的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!