深圳短视频推广,惠州抖音seo策划,橫山区建设局网站,长春网站建设有什么错误提示#xff1a;
error setting certificate verify locations: CAfile: C:/Program Files/Git/mingw64/ssl/certs/ca-bundle.crt CApath: none
问题原因#xff1a; 这个问题是因为git配置里crt证书的路径不正确导致的
解决办法#xff1a;
这个路径配置是在C:\Pro…错误提示
error setting certificate verify locations: CAfile: C:/Program Files/Git/mingw64/ssl/certs/ca-bundle.crt CApath: none
问题原因 这个问题是因为git配置里crt证书的路径不正确导致的
解决办法
这个路径配置是在C:\Program Files\Git\etc\gitconfig中应该所有人的配置都在这里
[diff astextplain]textconv astextplain
[http]sslBackend opensslsslCAInfo D:/Git/mingw64/ssl/certs/ca-bundle.crt # 原来默认写的就是 C:/Program Files/Git/mingw64/ssl/certs/ca-bundle.crt
[core]autocrlf truefscache truesymlinks false
[pull]rebase false
[credential]helper manager-core
[credential https://dev.azure.com]useHttpPath true
[init]defaultBranch master ca-bundle.crt 而该文件是在git的安装目录下的比如我的git安装路径是在D:\Git\所以我本机的crt文件就在D:/Git/mingw64/ssl/certs/ca-bundle.crt