国内网络在连接Github时会比较慢,所以我们往往会使用代理加速
除了使用各种全局类的代理工具之外,还可以仅给Git设置代理
设置代理
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 socks.proxy 'socks5://127.0.0.1:10808'
查看代理
git config --get --global http.proxy git config --get --global https.proxy git config --get --global socks.proxy
取消代理
git config --global --unset http.proxy git config --global --unset https.proxy git config --global --unset socks.proxy