fatal: unable to access 'https://github.com/xuexuejishu/smellycat.git/': SSL certificate problem: unable to get local issuer certificate
时间: 2024-05-10 10:10:34 浏览: 319
这个错误是由于无法获取本地颁发机构证书导致的。解决这个问题的方法是通过设置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仓库。
相关问题
fatal: unable to access 'https://github.com/GlasierKawa/DrinkTalk.git/': SSL certificate problem: unable to get local issuer certificate
以下是解决SSL证书问题的两种方法:
1. 通过配置git来解决SSL证书问题
```shell
git config --global http.sslverify false
```
2. 通过克隆时指定SSL证书验证为false来解决
```shell
git clone https://github.com/HalfStackDeveloper/FloatBall.git -b master
```
fatal: unable to access 'https://github.com/blueskylhm/gittest.git/': SSL certificate problem: unable to get local issuer certificate
这看起来是一个与 SSL 证书有关的问题。可能是因为没有正确安装 SSL 证书,或者证书已过期,导致无法访问 GitHub。您可以尝试使用以下命令来解决此问题:
git config --global http.sslVerify false
该命令将忽略 SSL 证书验证,并允许您访问 GitHub。但要注意,在使用此命令时,可能会存在一些安全风险。如果您需要进一步解决这个问题,推荐在本地计算机上更新 SSL 证书或下载最新的 Chrome 浏览器,以便使用最新的根证书验证GitHub的 SSL 证书。
阅读全文