git fatal: unable to access 'https://github.com/cyxtwd/work.git/': SSL certificate problem: unable to get local issuer certificate
时间: 2024-05-10 18:10:04 浏览: 123
git2.40.0最新安装包32/64安装包 windows
这个错误通常是由于无法获取本地签发者证书而导致的。解决此问题的一种方法是通过使用以下命令来跳过证书验证:
```
git config --global http.sslVerify false
```
请注意,这只是一个解决方案,它会禁用所有Git命令的SSL证书验证。这可能会对你的系统安全性造成潜在风险,因此请谨慎使用。
阅读全文