Git proxy bypass

前端 未结 7 2037
借酒劲吻你
借酒劲吻你 2020-12-07 14:07

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

7条回答
  •  既然无缘
    2020-12-07 14:23

    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.

提交回复
热议问题