내부 git과 글로벌 github을 동시에 설정하는 .gitconfig proxy세팅

chacha·2020년 3월 7일
3

개발기술 정리

목록 보기
1/9

Proxy를 사용하는 환경에서 내부 Git과 Global Github을 동시에 설정해야 할때.

.gitconfig파일을 다음과 같이 설정

#Proxy 환경에서 Global Git설정
[http]
      proxy = http://proxy_ip:port
      sslVerify = false
      postBuffer = 157286400
[https]
	proxy = https://proxy_ip:port    
	postBuffer = 157286400

#내부 Github접속
[http "https://내부GITURL/"]
	proxy = 
[https "https://내부GITURL/"]
	proxy =    

.gitconfig파일 위치

  • windows
    C:\users\<사용자ID>\.gitconfig
  • Linux
    ~/.gitconfig

만약 .gitconfig가 존재 하지 않는다면, 다음 명령어 수행하면 자동으로 생성됨

git config --global http.proxy <ip:port>
profile
안녕하세요~ :)

0개의 댓글