移动过git安装文件夹后push上传出现error setting certificate verify locations解决办法

错误代码

fatal: unable to access 'https://gitee.com/AAAAA.git/': error setting certificate verify locations:
  CAfile:F:/SSS/aa/Git/mingw64/ssl/certs/ca-bundle.crt
  CApath: none

导致错误是应为原先git安装在F:/SSS/aa目录下面,后面整理文件直接将安装文件更换到E:/software/git 目录下
应为转移过文件原先git安全认证方法设置在原来的安装路径下面只要将安全认证的文件地址更换到现在所在目录

解决方法

打开git bash窗口
执行git config --system http.sslcainfo "C:\Program Files (x86)\git\bin\curl-ca-bundle.crt"

(git config --system http.sslcainfo   “里面的是git安装文件里curl-ca-bundle.crt当前所在的地址”)

参考文章
https://blog.csdn.net/sdhongjun/article/details/52144253

你可能感兴趣的:(git)