git clone命令,unable to get local issuer certificate
发布于 作者:苏南大叔 来源:程序如此灵动~
整理电脑空间的时候,删除了一个很奇怪的证书。结果,git clone
的时候,就提示证书错误了。这个git clone
的证书问题,该怎么解决呢?这就是本文的主要内容。
苏南大叔的“程序如此灵动”博客,记录苏南大叔的代码经验总结。本文测试环境:win10
,git@2.35.1
。
龙套角色
龙套角色是通过gitclone.com
来代理的wechatferry
源码仓库。
git clone https://gitclone.com/github.com/lich0821/WeChatFerry.git wechatferry
报错截图
报错内容是:
fatal: unable to access 'https://github.com/lich0821/WeChatFerry.git/': SSL certificate problem: unable to get local issuer certificate
解决方案
执行命令:
git config --global http.sslVerify false
再次重试git clone
命令。
相关文章
总结
git
是个获取源码的很好用的工具。文章请点击:


