Git 访问github经常遇到网络问题拉取非常慢。这个时候就可以设置Git代理访问。
设置代理
git config --global https.proxy "socks5://127.0.0.1:7890"
git config --global http.proxy "socks5://127.0.0.1:7890"
取消代理
git config --global --unset https.proxy
git config --global --unset http.proxy
查看配置列表
git config --global --list
评论 (0)