I have a website I am using to host redmine and several git repositories
This works perfectly for http, but I can\'t clone with https, i.e.
git clone htt
git uses gnutls for this stuff, which requires the CA be specified. This can be done with per-respository with:
git config http.sslcapath
OR
git config http.sslcainfo
You can also specify --system or --global.