5

Dear community when I clone the project from bitbucket this error message apperas

"error: RPC failed; curl 56 GnuTLS recv error (-110): The TLS connection was non-properly terminated"

Does anyone know how can I fix it ?? Thanks in advance.

Hovo Asatryan
  • 53
  • 1
  • 1
  • 3

3 Answers3

6

Please try this:

git config --global http.postBuffer 524288000

git config --global https.postBuffer 524288000

git config --global core.compression -1
shivlal kumavat
  • 868
  • 1
  • 12
  • 28
1

You might need to recompile git with openssl not gnults. Please refer this here It works for me in Ubuntu 18.04 & 20.04

-1

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

solution: https://stdworkflow.com/782/fatal-cannot-access-https-github-com-gnutls-recv-error-110-the-tls-connection-was-non-pr

run commands as follows:

apt-get install gnutls-bin
git config --global http.sslVerify false
git config --global http.postBuffer 1048576000
Shabi Da
  • 1
  • 1