언제 시작 해요?proxy
2066 단어 Git
no_proxy
, Google 선생님께 물어봐도 이런 느낌입니다.요즘 기트가 대응하고 있나 봐요.
git 버전입니다.
git --version
git version 2.10.2
설정되지 않은 경우no_proxy
$ echo $no_proxy
$ git push
fatal: unable to access 'http://example.com/hoge.git/': The requested URL returned error: 503
이런 느낌은 연락이 안 된다.설정
no_proxy
이면 연결이 되니까 설정이 효과적일 것 같은데...!$ echo $no_proxy
127.0.0.1,localhost,192,168.*,example.com
$ git push
Counting objects: 3, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (2/2), done.
Writing objects: 100% (3/3), 376 bytes | 0 bytes/s, done.
Total 3 (delta 1), reused 0 (delta 0)
remote: Resolving deltas: 100% (1/1)
remote: Updating references: 100% (1/1)
To http://example.com/hoge.git
a00b56b..c463c57 master -> master
깃의 제출기록을 추적해보니 최근(2016년 3월)no_proxy
에 대응하는 것 같다.Reference
이 문제에 관하여(언제 시작 해요?proxy), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/tenten0213/items/65192c41d188032ebe25텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)