设置
git config http.proxy 127.0.0.1:8888
查看
git config --get http.proxy
取消
git config --unset http.proxy
上述如果想换成全局的,再config
和--
之间加上--global
,比如git config --global http.proxy 12.23.41.21
设置
git config http.proxy 127.0.0.1:8888
查看
git config --get http.proxy
取消
git config --unset http.proxy
上述如果想换成全局的,再config
和--
之间加上--global
,比如git config --global http.proxy 12.23.41.21