git学习
报错504:代理有问题
查看代理:
法1 export | grep proxy
法2 env | grep xxx设置代理HTTPS_PROXY为空:
export HTTPS_PROXY=
重进入git bash,HTTPS_PROXY=xxx,又出现了
有效的办法
无效的办法:
#取消http代理
git config --global --unset http.proxy
#取消https代理
git config --global --unset https.proxy
git config --global --unset http.proxy
git config --global --unset http.sslVerify
git config --global --unset https.proxy
git config --global --unset https.sslVerify
export http_proxy=""export https_proxy=""export HTTP_PROXY=""export HTTPS_PROXY=""