After installed git in AIX, when run git clone
found that SSL certificate problem: unable to get local issuer certificategit
export GIT_SSL_NO_VERIFY=true
( unset GIT_SSL_NO_VERIFY
)git config http.sslVerify false
( git config --unset http.sslVerify
)curl http://curl.haxx.se/ca/cacert.pem -o /var/ssl/cacert.pem
(not work, but no /etc/ssl or /etc/openssl folder in AIX)<pre> [http] sslCAInfo=/var/ssl/certs/cacert.pem </pre>github
git config --system (or --global or --local) http.sslcainfo /var/ssl/certs/cacert.pem