文章摘要
GPT 4
此内容根据文章生成,并经过人工审核,仅用于文章内容的解释与总结
投诉

fatal: unable to access ‘https://github.com/username/repo.git/‘: GnuTLS recv error (-110): The TLS connection was non-properly terminated.

解决方案:

1
2
3
apt-get install gnutls-bin
git config --global http.sslVerify false
git config --global http.postBuffer 1048576000
  1. 安装gnutls-bin
  2. 禁用全局SSL验证
  3. 增大 http.postBuffer 的大小,http.postBuffer 决定了 Git 向远程服务器发送数据时的缓冲区大小,默认值为 1MB。将缓冲区大小增大到 1GB(1048576000 字节)可以解决因数据量大导致的推送中断问题。