GitClone报错:GnuTLS recv error (-110): The TLS connection was non-properly terminated.解决方法

尝试了下面这种解决办法,没有解决

imaginemiracle@im-Linux:~$ sudo apt-get update
imaginemiracle@im-Linux:~$ sudo apt-get install gnutls-bin
imaginemiracle@im-Linux:~$ git config --global http.sslVerify false
imaginemiracle@im-Linux:~$ git config --global http.postBuffer 1048576000

最终使用下面的方法解决的

$ export GIT_TRACE_PACKET=1
$ export GIT_TRACE=1
$ export GIT_CURL_VERBOSE=1

你可能感兴趣的:(git)