2012-08-29 2 views
0

특정 github 분기를 복제 할 수 없습니다! 대학에 오징어 프록시 서버가있을 때 다음과 같은 오류가 발생합니다.프록시 서버를 통해 github 디렉토리를 복제 할 수 없습니다.

 Cloning into 'ws'... 
     error: The requested URL returned error: 407 while accessing https://github.com/abcd/efg.git/info/refs 
     fatal: HTTP request failed 

Please Help !! 미리 감사드립니다.

답변

0

.gitconfig (그것이 당신의 $HOME 폴더에있는)

[http] 
     proxy = http://username:[email protected]:your-proxy-port 

예에 프록시 서버를 추가하려고 :

[http] 
     proxy = http://user:[email protected]:3128 

은 gitconfig의 [core] 섹션에 배치해야합니다. 자세한 내용은 here을 참조하십시오.

관련 문제