查看代理命令
git config --global --list
或
git config --global http.proxy
git config --global https.proxy
设置代理
git config --global http.proxy http://proxyhost:port
git config --global https.proxy https://proxyhost:port
或(带用户密码)
git config --global http.proxy http://user:password@proxyhost:port
git config --global https.proxy https://user:password@proxyhost:port
取消代理
git config --global --unset http.proxy
git config --global --unset https.proxy
网友评论