git设置http全局代理

2021-11-01  本文已影响0人  火星来的农民

git config --global 变量名称 变量内容
git config --global --unset 取消变量

例如:

git设置全局http代理和https代理
git config --global http.proxy 127.0.0.1:1080
git config --global https.proxy 127.0.0.1:1080

取消这两个全局代表
git config --global --unset http.proxy
git config --global --unset https.proxy

上一篇 下一篇

猜你喜欢

热点阅读