git clone下来github代码库后,执行git pull报错fatal: unable to access 'https://github.com/test/bootstrap.git Failed to connect to 127.0.0.1 port 1080: Connection refused
取消代理即可
git config --global --unset http.https://github.com.proxy http://127.0.0.1:1080
在尝试gitcloneGitHub代码库后,用户遇到了一个错误:无法访问https://github.com/test/bootstrap.git,失败原因是连接到127.0.0.1的1080端口被拒绝。为了解决这个问题,用户建议取消HTTP代理设置,通过运行gitconfig--global--unsethttp.https://github.com.proxyhttp://127.0.0.1:1080命令来移除代理配置。
git clone下来github代码库后,执行git pull报错fatal: unable to access 'https://github.com/test/bootstrap.git Failed to connect to 127.0.0.1 port 1080: Connection refused
取消代理即可
git config --global --unset http.https://github.com.proxy http://127.0.0.1:1080

被折叠的 条评论
为什么被折叠?