I've tried everything, but still can't seem to be able to clone a git repository over https, even though I have no problem getting an https page.
cURL version:
$ curl --version
curl 7.21.7 (amd64-pc-win32) libcurl/7.21.7 OpenSSL/0.9.8r zlib/1.2.5
Protocols: dict file ftp ftps gopher http https imap imaps ldap pop3 pop3s rtsp
smtp smtps telnet tftp
Features: AsynchDNS GSS-Negotiate Largefile NTLM SSL SSPI libz
Trying to clone https repo:
$git clone https://github.com/SublimeText/LaTeXTools.git
Cloning into 'LaTeXTools'...
error: Protocol https not supported or disabled in libcurl while accessing https
://github.com/SublimeText/LaTeXTools.git/info/refs?service=git-upload-pack
fatal: HTTP request failed
Works for https pages no problem:
$ curl -L https://www.google.com
<!doctype html><html
...
</script></body></html>
Any suggestions? Thanks!