Quantcast
Channel: Redino blog
Viewing all articles
Browse latest Browse all 80

git error setting certificate verify location

$
0
0

After installing Windows on another drive and logged in the new Windows, previous Git installation drive path is changed: for my case, it's changing from D:\ to J:\

Then I updated the PATH variable to add Git path, but when running git clone using https url, following error appeared:

fatal: unable to access ..: error setting certificate verify locations:
CAfile: d:/Program Files/Git/mingw64/ssl/certs/ca-bundle.crt
CApath: none

the CAfile location should be H:/Program Files/Git/mingw64/ssl/certs/ca-bundle.crt for current newly installed Windows, while the error information indicates it's still using the old path.

Solution

To fix it, we need modify git system config variable: http.sslcainfo

git config --system --unset http.sslcainfo
git config --system --add http.sslcainfo "J:/Program Files/Git/mingw64/ssl/certs/ca-bundle.crt"

Try git clone again, it works now.

The post git error setting certificate verify location appeared first on Redino blog.


Viewing all articles
Browse latest Browse all 80

Trending Articles