On Tue, Jul 12, 2016 at 07:05:24PM +0800, Alex Vong wrote: > I forget to tell that I am not using Guix SD but using Guix on top of > Debian. Do you have any recommendation on this?
This works for me in my login shell profile:
if [ -d /etc/ssl/certs ]; then
export SSL_CERT_DIR=/etc/ssl/certs
export SSL_CERT_FILE=$SSL_CERT_DIR/ca-certificates.crt
export GIT_SSL_CAINFO=$SSL_CERT_FILE
fi
