ETC

[Git] SSL certificate problem: self signed certificate

1984 2022. 9. 23. 22:04

[오류]

fatal: unable to access 'https://XXX.com' : SSL certificate problem: self signed certificate

* 신뢰할 수 있는 사이트인 경우

 

[해결방법 - 1] : git config 수정 (ssl 검증 안하도록)

git config --global http.sslVerify false

[해결방법 -2] : shell 의 환경 변수수정 (ssl 검증 안하도록)

export GIT_SSL_NO_VERIFY=0

 

728x90