fatal: unable to access 'https://github.com/xuexuejishu/smellycat.git/': SSL certificate problem: unable to get local issuer certificate
时间: 2024-05-10 14:10:34 浏览: 295
解决fatal:remote error:You can't push to git://github.com/username/*.git问题的办法
这个错误是由于无法获取本地颁发机构证书导致的。解决这个问题的方法是通过设置git的配置来忽略SSL证书验证。你可以按照以下步骤进行操作:
1. 打开终端或命令提示符窗口。
2. 输入以下命令来设置git的配置:
```shell
git config --global http.sslVerify false
```
3. 然后再次尝试执行git clone命令:
```shell
git clone https://github.com/xuexuejishu/smellycat.git/
```
这样就可以忽略SSL证书验证,成功克隆GitHub仓库。
阅读全文