Git Clone not referencing config settings
Git Clone not referencing config settings
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:
/mingw64/libexec
http.sslcainfo=C:/Program Files/Git/mingw64/ssl/certs/ca-bundle.crt
http.sslcainfo=C:/Program Files/Git/mingw64/ssl/certs/ca-bundle.crt
http.sslverify=false
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.
/libexec/ssl
git config --list
Possible same issue as Github error cloning my private repository?
– Grisha Levit
Aug 27 at 21:40
Possible duplicate of Github: error cloning my private repository
– GGG
Aug 27 at 21:43
By clicking "Post Your Answer", you acknowledge that you have read our updated terms of service, privacy policy and cookie policy, and that your continued use of the website is subject to these policies.
I have changed the --system and --global settings for sslCAinfo and sslverify to refer to an ssl directory in mingw64 that does exist can you add the settings that you set for these (edit your question to include the relevant portion of
git config --list
).– Grisha Levit
Aug 27 at 21:38