MENU

git启用代理

2018 年 04 月 01 日 • 工具

启用代理

#没有密码
git config --global http.proxy 10.167.32.133:8080
git config --global https.proxy 10.167.32.133:8080

#使用密码
git config –global http.proxy http://user:password@10.167.32.133:8080
git config –global http.proxy https://user:password@10.167.32.133:8080

关闭代理

git config --system (或 --global 或 --local) --unset http.proxy
git config --system (或 --global 或 --local) --unset https.proxy

文章参考https://blog.csdn.net/wozaixiaoximen/article/details/48434853