有时从github.com克隆代码, 奇慢, 有时只有几K/s, 设置完代理后,直接起飞
设置代理
1
2
3
| //1080为本地的ss代理服务器的端口
$ git config --global http.proxy socks5://127.0.0.1:1080
$ git config --global https.proxy socks5://127.0.0.1:1080
|
取消代理
1
2
| $ git config --global --unset http.proxy
$ git config --global --unset https.proxy
|
------------------------------------------------