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に足すと
できるようになった