autoDL kex_exchange_identification: read: Connection reset
时间: 2023-12-22 11:29:27 浏览: 183
修复kx关联
3星 · 编辑精心推荐
根据提供的引用内容,当使用git clone命令克隆一个仓库时,可能会遇到"gnutls_handshake() failed: The TLS connection was non-properly terminated"错误。这个错误通常是由于代理设置错误导致的。
解决这个问题的方法是检查和修复代理设置。你可以按照以下步骤进行操作:
1. 检查代理设置:使用以下命令检查当前的代理设置:
```shell
git config --global --get http.proxy
git config --global --get https.proxy
```
2. 清除代理设置:如果代理设置存在,可以使用以下命令清除代理设置:
```shell
git config --global --unset http.proxy
git config --global --unset https.proxy
```
3. 重新尝试克隆仓库:清除代理设置后,再次尝试使用git clone命令克隆仓库,应该不再出现"gnutls_handshake() failed: The TLS connection was non-properly terminated"错误。
阅读全文