Anyone know why git is failing to clone with the HTTPS protocol (but succeeds with the git protocol)?
Example: $ git clone https://github.com/gnubee-git/GnuBee_Docs.git docs.gits Cloning into 'docs.gits'... fatal: unable to access 'https://github.com/gnubee-git/GnuBee_Docs.git/': gnutls_handshake() failed: Public key signature verification has failed. whereas: $ git clone git://github.com/gnubee-git/GnuBee_Docs.git docs.gits Cloning into 'docs.gits'... remote: Counting objects: 1218, done. remote: Compressing objects: 100% (29/29), done. ... ?