Unable to locally verify the issuer's authority. To connect to github.com insecurely, use `--no-check-certificate'
时间: 2023-06-19 19:03:53 浏览: 295
crossview_localisation
这个错误通常是因为 SSL 证书验证失败导致的。我们可以尝试使用 `--no-check-certificate` 选项来跳过 SSL 证书验证。可以使用以下命令连接到 GitHub:
```
git clone --no-check-certificate https://github.com/username/repo.git
```
或者,如果您已经克隆了存储库,可以使用以下命令:
```
git config http.sslVerify false
```
请注意,这些方法都会使连接不安全,并且不建议在生产环境中使用。如果您遇到此错误,请确保您的 SSL 证书配置正确,并尝试使用其他网络连接来验证它是否是您的网络问题。
阅读全文