设置代理
1,找到vpn代理地址

2,设置代理
git config --global http.proxy http://127.0.0.1:58591
git config --global https.proxy http://127.0.0.1:58591
查看代理
git config --list
如果不需要则取消代理
git config --global --unset http.proxy
git config --global --unset https.proxy
网友评论