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
网友评论