赞
踩
提高 git 访问 github 速度
网络代理前提:
git config --list
两个http 差别不大,只是增加(或减少)一个字母
s
。
选择下面其中一个就可以。
根据 http 端口设置,我这里端口为 10809
:
git config --global http.proxy http://127.0.0.1:10809
git config --global https.proxy https://127.0.0.1:10809
根据 socks 端口设置,我这里端口为 10808
git config --global http.proxy 'socks5://127.0.0.1:10808'
git config --global https.proxy 'socks5://127.0.0.1:10808'
git config --global --unset http.proxy
git config --global --unset https.proxy
参考
附录
我的代理端口截图如下:
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。