localhost に対する証明書がないため git clone https://localhost/foo.git みたいなことをすると、以下のようなエラーが出て怒られます。 error: server certificate verification failed. CAfile: /etc/ssl/certs/ca-certificates.crt CRLfile: none while accessing https://xxxx@xxxx.xxxx/xxxx/xxxx.git/info/refs fatal: HTTP request failed これに対処するには export GIT_SSL_NO_VERIFY=1 してあげれば良いらしいです。 https://blog.breadncup.com/2011/06/09/skip-git-ssl-verification/