刚刚在Windows端装了Git,从gitHub上下载项目时候系统提示:
SSL certificate problem: unable to get local issuer certificate
原因:
这里其实是电脑没有安装对应的ca证书,所以无法通过https连接到git服务器。
这里通过设置git的ssl验证跳过了这个错误(win下):
解决办法:
打开git命令操作框,配置http.sslVerify为false,如下:
git config --global http.sslVerify false