Reputation: 53
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
Reputation: 1
fatal: unable to access 'https://github.com/****': GnuTLS recv error (-110): The TLS connection was non-properly terminated.
run commands as follows:
apt-get install gnutls-bin
git config --global http.sslVerify false
git config --global http.postBuffer 1048576000
Upvotes: -1
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
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