git 取消代理
2019-01-07 本文已影响0人
月魂king
获取代理方式
git config get http.https://github.com.proxy
获取方式为git config get 键
来获取对应的值
取消某种代理方式
git config --global --unset http.https://github.com.proxy
取消方式为 git config --global --unset
其中--global为全局取消,如果不需要则可以不添加。