最近不知道为什么存在 github 上的项目无法拉取了,报错如下
$ git pull github development
fatal: unable to access 'https://github.com/jiangcheng1806/multi-applications.git/': Failed to connect to 127.0.0.1 port 50647: Connection refused
在网上搜索了一下,可能是代理的问题,于是通过如下操作解决了问题,
$ git config --global --unset http.https://github.com.proxy
$ git config --global --unset https.https://github.com.proxy
取消掉所有代理设置,这个代理应该是自动创建的,还得手工去掉,也是不太方便了。