git clone:证书链无效

时间:2016-10-12 10:51:51

标签: git macos github ssl-certificate

当我在终端输入git clone https://github.com/twbs/bootstrap.git或任何其他网址时,总会出现fatal: unable to access 'https://github.com/twbs/bootstrap.git/': SSL certificate problem: Invalid certificate chain

之类的结果

我确定没有过期的证书问题,而且我已经尝试将git config http.sslVerify设置为false。

os是macOS sierra

1 个答案:

答案 0 :(得分:0)

你可以做到

git config http.sslVerify" false"

在您的特定仓库中

仅禁用该仓库的SSL证书检查。

您也可以为所有仓库全局设置

git config --global http.sslVerify false