Monday 15 October 2012

Git Cloning Error: gnutls_handshake()

If you need to clone a repository from the github and getting the following annoying error then the trick is to change the https protocole to http:

error: gnutls_handshake() failed: A TLS warning alert has been received. while accessing https:
fatal: HTTP request failed

so just do:
git clone http://github.com/whatever ...

Wednesday 1 August 2012

Broken RPC Failed Error GitHub

If you are trying to push your project into github and getting the following annoying error message, that means that you are axceeding git's http buffering limit in one go. One solution is to increas your limit this command:

"git config http.postBuffer 209715200"