git push Failed to connect to localhost port 1080:

结论:是设置代理导致的

1. 检查全局的设置

输入 git config --global -e检查全局配置中是否有[http][https]的代理设置,如proxy = socks://localhost:1080,如果有的话删除即可。

2. 检查当前.git文件下的config

在当前工作目录下cat ./.git/config
git push Failed to connect to localhost port 1080:_第1张图片

如上图所示,删除代理即可。

你可能感兴趣的:(改bug,git,github)