从 github 检项目时,报了以下错误:
fatal:unable to access ': SSL certicate problem: unable to get local issuer certificate
这其实是电脑没有安装对应的 CA 证书,所以无法通过 https 协议连接到 github服务器。
你可以通过 http.sslVerify 属性来设置 git 是否验证 HTTPS,配置如下
git config --global http.sslVerify false
之后再进行 git clone,就可以了。