前言:
今天在拉取git仓库代码的时候,报错:fatal: unable to access 'https://codeup.aliyun.com/fly/business-project/lezhi-HR.git/': Failed to connect to 127.0.0.1 port 8020 after 2082 ms: Couldn't connect to server
错误截图:
这个错误信息表明:连接到本地地址127.0.0.1的8020端口失败了
解决方法:
在终端分别输入:
git config --global --unset http.proxy
git config --global --unset https.proxy
再次运行就可以成功拉取代码啦!