fatal: unable to access 'https://github.com/neheller/kits23/': GnuTLS recv error (-110): The TLS connection was non-properly terminated.
时间: 2023-12-11 08:28:37 浏览: 339
解决fatal:remote error:You can't push to git://github.com/username/*.git问题的办法
根据提供的引用内容,这个错误是由于TLS连接未正确终止引起的。为了解决这个问题,你可以尝试以下方法:
1. 执行以下命令来删除全局的HTTP代理设置:
```
git config --global --unset http.proxy
git config --global --unset https.proxy
```
2. 执行以下命令来查看全局的Git配置信息:
```
git config --global -l
```
注意,这个命令可能会报错,不过不影响后续操作。
3. 执行以下命令来设置HTTP代理:
```
git config --global http.proxy <你的代理地址>
```
将`<你的代理地址>`替换为你的代理地址。
4. 最后,重新克隆你的项目:
```
git clone https://github.com/neheller/kits23/
```
如果上述步骤都没有解决问题,那么可能是网络或Git服务器的问题。你可以尝试使用其他网络环境或联系Git服务器的管理员来解决问题。
阅读全文