【问题集】Failed to connect to 127.0.0.1 port 1080: Connection refused

The reason for this problem is that a dynamic proxy is set up, o(╥﹏╥)o

Use git to view dynamic proxy

git config --global http.proxy
git config --global https.proxy

Insert picture description here
There is a return value, cancel the proxy

Cancel proxy

git config --global --unset http.proxy
git config --global --unset httpx.proxy

Insert picture description here
So far, a perfect solution.

Guess you like

Origin blog.csdn.net/weixin_51656605/article/details/112463919