今天遇到了git update失败。
记录一下
错误: git SSL certificate problem: unable to get local issuer certificate
这个问题是由于没有配置信任的服务器HTTPS验证。默认,cURL被设为不信任任何CAs,就是说,它不信任任何服务器验证。
找到任意一个文件夹。右键 选择>Git Bash Here(需要安装git,没安装请自行百度)
之后在控制台输入下面命令就可以解决:
标签:git,certificate,get,unable,local,issuer From: https://www.cnblogs.com/xiaolibiji/p/17658166.htmlgit config --global http.sslVerify false