Hovo Asatryan
Hovo Asatryan

Reputation: 53

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

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.

Upvotes: 5

Views: 16277

Answers (3)

Shabi Da
Shabi Da

Reputation: 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

Upvotes: -1

Weizhuo Zhang
Weizhuo Zhang

Reputation: 21

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

Upvotes: 1

shivlal kumavat
shivlal kumavat

Reputation: 888

Please try this:

git config --global http.postBuffer 524288000

git config --global https.postBuffer 524288000

git config --global core.compression -1

Upvotes: 6

Related Questions