LoginSignup
17

More than 5 years have passed since last update.

Windowsのgitでerror setting certificate verify locationsが出た場合

Last updated at Posted at 2015-12-28

git cloneができなくなった。

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

C:/Program Files/Git/mingw64/ssl/certs/ca-bundle.crtは存在しない

http://curl.haxx.se/docs/caextract.html からcacert.pemをダウンロード

~/.ssh/cacert.pemとか適当な場所へ置く

~/.gitconfig
[http]
    sslcainfo = C:/Users/shwld/.ssh/cacert.pem

こんな感じのを.gitconfigに足すと

できるようになった

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
17