Git works in a proxied environment by setting the http.proxy configuration parameter.
For certain addresses I need to bypass the proxy. Is there a no-proxy/bypass-p
Due to Windows / Unix user role, if you can't eliminate the http_proxy from command line, please try this approach -
git config -l --show-origin
That will print the configurations based present on the files according to hierarchy. Now go to specific file (local .git/config folder file) and update / remove the http_proxy.
Hope this helps.