I have read all the posts related to git including StackOverFlow : git refuses to connect without proxy
I'm using git bash on Windows 10, recently when I tried to clone, push or pull my branches to a remote repository I get this message: fatal: unable to access 'http://xxx/xxx.git/': Failed to connect to 192.168.1.4 port 8090: Connection refused
that "192.168.1.4" is my local IP
I thinked I have set proxy on my windows and checked it by
netsh winhttp show proxy
and the result was
"Direct Access (no proxy server)."
So I instructed git not to use any proxies:
git config --global --unset http.proxy
git config --global --unset https.proxy
and verify to not use proxy
git config --system --get https.proxy
git config --global --get https.proxy
git config --system --get http.proxy
git config --global --get http.proxy
And I noticed that no proxy is set on Windows or git But my error is still there and I don't know why git wants to communicate with this IP(192.168.1.4) and (8090) to communicate with the remote.