本文主要是介绍git提示error setting certificate verify locations错误解决,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
git version 2.14.2
git 提示 error setting certificate verify locations 错误
一般是因为没有找到ssl证书位置导致的
两种方法解决:
1. 重新配置证书的位置
windows证书一般在安装的git目录下的 mingw64/ssl/certs/ca-bundle.crt 目录
配置证书的位置
git config --system http.sslcainfo "$gitPath/mingw64/ssl/certs/ca-bundle.crt"
注:$gitPath为git的安装目录
2. 关闭ssl认证
git config --system http.sslcainfo false
这篇关于git提示error setting certificate verify locations错误解决的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!