2019独角兽企业重金招聘Python工程师标准>>>
git config --global http.proxy http://127.0.0.1:1080
git config --global https.proxy https://127.0.0.1:1080
git config --global http.sslVerify false删除
git config --global --unset http.proxy
git config --global --unset https.proxy
或者 在环境变量 直接做设置
export http_proxy="http://127.0.0.1:1080";
export https_proxy=$http_proxy;
export no_proxy=aliyun.com,localhost,127.0.0.1,ruby-china.org