- git으로 Repository에 있는 자료를 Pull해올 때, 만약 git이 HTTPS로 되어있다면 아래와 같은 오류가 뜬다.
fatal: unable to access 'https://git 주소: SSL certificate problem: self signed certificate |
- 그럴 땐, 아래와 같이 SSL Verify를 off 해주는 명령어를 입력해준다.
git config --local http.sslVerify false |
'■ IT > - Linux' 카테고리의 다른 글
system과 service 차이 (0) | 2019.11.19 |
---|---|
sed 명령어 (0) | 2019.08.23 |
Xargs와 파이프('|') 차이점 (0) | 2019.08.23 |
PS AUX에서 STAT에 있는 값 의미 (0) | 2019.08.08 |