处理方式
git config --global http.proxy http://127.0.0.1:7890
git config --global https.proxy http://127.0.0.1:7890
改完之后还原:
git config --global --unset https.proxy
git config --global --unset http.proxy
curl请求超时:
在.zshrc 文件里配置
export https_proxy="http://127.0.0.1:7890"
export http_proxy="http://127.0.0.1:7890"
不使用时,屏蔽掉
网友评论