macbook github报错:Failed to connect to 127.0.0.1 port 7890: Connection refused 解决方法
问题现象:终端运行git push报错
fatal: unable to access 'https://github.com/benjieqiang/programmer.git/': Failed to connect to 127.0.0.1 port 7890: Connection refused
系统版本: macbook m1 os12.1,之前有动过代理。
解决方案:
终端运行下面的命令,之后重新push问题解决。
# 查看代理
git config --global --get http.proxy
git config --global --get https.proxy
# 取消代理
git config --global --unset http.proxy
git config --global --unset https.proxy