에이전트 로 Git 사용 하기

링크http://cms-sw.github.io/tutorial-proxy.html
어제 Github 벽 에 걸 려 push 가 올 라 가지 못 했다.
SSH 프로 토 콜 로 Git 창고 연결
이렇게 원 격 으로 연결된다 면 SSH 프로 토 콜 을 통한 것 이다.
[email protected]:cms-sw/cmssw.git ssh://[email protected]/cms-sw/cmssw.git
이렇게 되면 SSH 자체 의 프로필 을 설정 해 야 합 니 다. 설정 ProxyCommand 옵션 은 ~ /. ssh / config 에 있 습 니 다.
Host github.com
    User                    git
    ProxyCommand            nc -x localhost:1080 %h %p

HTTP 또는 HTTPS 프로 토 콜 로 연결
하면, 만약, 만약...
http://github.com/cms-sw/cmssw.git   
https://github.com/cms-sw/cmssw.git

이렇게 설정 해 야 돼 요.
git config --global http.proxy socks5://localhost:1080

Git 프로 토 콜 통과 하기
하면, 만약, 만약...
git://github.com/cms-sw/cmssw.git

이렇게 하 다
git config --global core.gitproxy "git-proxy"
git config --global socks.proxy "localhost:1080"

좋은 웹페이지 즐겨찾기