获取代理方式
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为全局取消,如果不需要则可以不添加。
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为全局取消,如果不需要则可以不添加。