查看本地git配置信息 git config --global -e 查看自己科學上網的代理地址和埠信息 為git添加代理 git config --global http.proxy https://127.0.0.1:51643 git config --global https.proxy ...
查看本地git配置信息
git config --global -e
查看自己科學上網的代理地址和埠信息
為git添加代理
git config --global http.proxy https://127.0.0.1:51643
git config --global https.proxy https://127.0.0.1:51643
此時再次查看配置信息
如果要取消代理
git config --global --unset http.proxy
git config --global --unset https.proxy