오류 상황:
git clone https://github.com/KentBeck/junit.git
Cloning into junit...
error: SSL certificate problem, verify that the CA cert is OK. Details:
error:14090086:SSL routines:SSL3_GET_SERVER_CERTIFICATE:certificate verify failed while accessing https://github.com/KentBeck/junit.git/info/refs
fatal: HTTP request failed
해결:
환경변수 GIT_SSL_NO_VERIFY를 true로 설정하면 된다.
GIT_SSL_NO_VERIFY=true
refs:
happy hackin'