Git设置代理

2017-08-02  本文已影响72人  w_nanan

查看代理命令

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
上一篇下一篇

猜你喜欢

热点阅读