当我在终端输入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
答案 0 :(得分:0)
你可以做到
git config http.sslVerify" false"
在您的特定仓库中仅禁用该仓库的SSL证书检查。
您也可以为所有仓库全局设置
git config --global http.sslVerify false