git 프록시 설정(proxy setting)은 아래와 같다.
$ git config --global http.proxy [프록시서버주소:포트]
$ git config --global https.proxy [프록시서버주소:포트]
e.g.) git config --global https.proxy http://10.10.10.10:8080
proxy server를 경유할 경우 높은 확률로 https 인증 실패를 당하므로
$ git config http.sslVerify false
도 함께 해주는 것이 좋다.
참고로 기등록된 proxy 주소가 있는지 알고 싶다면 아래 명령으로 확인 가능하다.
$ git config --global --get http.proxy
$ git config --global --get https.proxy
$ git config --global --get http.sslVerify
반응형
'Linux > Proxy' 카테고리의 다른 글
Proxy setting, curl (0) | 2023.05.28 |
---|---|
Proxy setting, date - Proxy가 있을 때 시간 동기화 (0) | 2020.06.11 |
Proxy setting, npm (ubuntu 18.04) (0) | 2020.04.06 |
Proxy setting, jupyter notebook (0) | 2020.02.06 |
Proxy setting, conda (Windows) (0) | 2019.12.08 |