背景:
今天想更新Homebrew,但是发现提示
fatal: unable to access ‘https://mirrors.ustc.edu.cn/brew.git/’: Could not resolve proxy: “localhost”。如下图所示:
解决方案:
问题排查发现是因为之前嫌git下载慢,设置了代理。只要把设置的localhost:1080的代理取消就行了。
执行下列脚本查看设置的代理。
git config --global http.proxy
执行下列脚本关闭代理。
git config --global --unset http.proxy