fatal: unable to access 'https://github.com/friendlyarm/rtw88/': GnuTLS recv error (-110): The TLS connection was non-properly terminated.
时间: 2024-01-10 13:21:58 浏览: 155
解决fatal:remote error:You can't push to git://github.com/username/*.git问题的办法
这个错误通常是由于网络连接问题导致的。可能是由于网络不稳定或服务器问题导致无法访问指定的GitHub仓库。解决此问题的一种方法是尝试使用其他网络连接或等待一段时间后再次尝试。另外,还可以尝试使用代理服务器******。您可以在git配置中设置代理服务器,如下所示:
```shell
git config --global http.proxy http://proxy.example.com:8080
git config --global https.proxy https://proxy.example.com:8080
```
3. 更改仓库URL:如果您仍然无法访问特定的GitHub仓库,您可以尝试更改仓库的URL。您可以使用以下命令更改远程仓库的URL:
```shell
git remote set-url origin <new_url>
```
请注意,这些解决方法可能不适用于所有情况。如果问题仍然存在,请尝试与GitHub支持团队联系以获取进一步的帮助。
阅读全文