当前位置: 代码迷 >> 综合 >> Git Clone错误解决:GnuTLS recv error (-110): The TLS connection was non-properly terminated.
  详细解决方案

Git Clone错误解决:GnuTLS recv error (-110): The TLS connection was non-properly terminated.

热度:45   发布时间:2023-09-15 11:53:34.0

报错:

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

     
  • 1

解决:

apt-get install gnutls-bin
git config --global http.sslVerify false
git config --global http.postBuffer 1048576000

     
  • 1
  • 2
  • 3
  相关解决方案