Github unable to access... gnutls_handshake() failed:Close notify

Viewed 1199

When attempting to git clone any repository I get this error

fatal: unable to access <repo url>: gnutls_handshake() failed: Close notify

Just incase it helps I am on a Raspberry Pi Zero.

Git version: 2.1.4

libgnutls-deb0 version 3.3.8-6+deb9 architecture armhf

libgnutls-open version 3.3.8-6+deb9 architecture armhf

1 Answers

Try:

git config --global http.sslVerify false

to disable verification it lets you clone but it's not the best solution you should check server configuration.

Hope it helps

Related