I'm trying to clone a repository, but Git keeps giving me the same error:
fatal: unable to access '[PROJECT NAME*]': error setting certificate verify
locations:
CAfile: C:/Program Files/Git/mingw64/libexec/ssl/certs/ca-bundle.crt
CApath: none
*Removed by me
There is no ssl folder in /mingw64/libexec
. I have changed the --system and --global settings for sslCAinfo and sslverify to refer to an ssl directory in mingw64 that does exist and to not verify ssl at all, but Git doesn't seem to be reading those settings. I set them as follows:
http.sslcainfo=C:/Program Files/Git/mingw64/ssl/certs/ca-bundle.crt
http.sslverify=false
But even with those settings, Git gives the error citing /libexec/ssl
. I can't find anywhere else it could be reading that location from either. I've reinstalled Git dozens of times over the past week trying to see if that would fix it, but nothing is helping.