『踩坑记录』git clone报错fatal: unable to access ‘URL‘: error setting certificate verify locations

文章目录

问题描述

git clone时,报错提示无法定位证书
『踩坑记录』git clone报错fatal: unable to access ‘URL‘: error setting certificate verify locations

fatal: unable to access 'URL': error setting certificate verify locations: 
	CAfile: PATH
	CApath: none

解决办法

关闭验证可以解决,最根本这是由于曾经git路径被修改了,证书索引路径还是原来的路径,所以导致证书无法定位

之前确实是修改过git的路径,将git文件夹移到了一个子目录下了
『踩坑记录』git clone报错fatal: unable to access ‘URL‘: error setting certificate verify locations

定位到现在的git路径后,执行以下指令修改证书路径

根据个人情况修改路径(X:/xxx/Git)

git config --system http.sslcainfo "X:/xxx/Git/mingw64/ssl/certs/ca-bundle.crt"

改好就能正常git clone

上一篇:SSL certificate problem: unable to get local issuer certificate 解决方法


下一篇:SSL 笔记:常见错误汇总