Notice
Recent Posts
Recent Comments
Link
«   2024/12   »
1 2 3 4 5 6 7
8 9 10 11 12 13 14
15 16 17 18 19 20 21
22 23 24 25 26 27 28
29 30 31
Tags
more
Archives
Today
Total
관리 메뉴

main

[Git] SSL certificate problem: self signed certificate 본문

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

'ETC' 카테고리의 다른 글

[HTTP] GET과 POST의 차이  (0) 2022.09.24
[Oracle] Oracle 11gR2 다운로드  (0) 2022.09.24
[Ubuntu] python 버전별 설치  (0) 2022.09.12
[Powershell] 네트워크 드라이브 용량 체크  (0) 2022.09.10
[Docker] 도커 설치 - Ubuntu 18.04  (0) 2022.09.08
Comments