推送git时遇到问题。 出现此错误消息:
SSL certificate problem: unable to get local issuer certificate
答案 0 :(得分:1)
以前有几种方法可以解决此问题:
A。确保根证书已添加到git.exe的证书存储中,如此处所述。
B。通过运行告诉Git在哪里找到CA捆绑包:
git config --system http.sslCAPath / absolute / path / to / git / certificates 或将CA捆绑软件复制到/ bin目录,并将以下内容添加到gitconfig文件中:
sslCAinfo = /bin/curl-ca-bundle.crt
C。重新安装Git。
D。确保存在完整的CA,包括根证书。