访问github慢是一个通病,不过可以给git设置带来提速
1. 为git设置全局代理
git config --global http.proxy socks5://127.0.0.1:1080
git config --global https.proxy socks5://127.0.0.1:1080
2. 取消代理
git config --global --unset http.proxy
git config --global --unset https.proxy
3. 只对github.com
#设置代理
git config --global http.https://github.com.proxy socks5://127.0.0.1:1080
#取消代理
git config --global --unset http.https://github.com.proxy
4. 修改配置文件办法
找到git的配置文件.gitconfig
。这个文件一般在用户目录下
# 为github.com配置socks5代理
[http "https://github.com"]
proxy = socks5://127.0.0.1:1080
# 为所有的配置socks5代理
[http]
proxy = socks5://127.0.0.1:1080
网友评论