Git through a Proxy. What is causing the 407 error when cloning?

后端 未结 11 2145
长发绾君心
长发绾君心 2020-12-08 16:20

I\'m trying to use Git through a proxy. I\'ve tried setting parameters \'git config --global\' in a lot of ways but always without success when cloning repositories.

11条回答
  •  温柔的废话
    2020-12-08 16:59

    If you're already behind a proxy and getting this error, you will have to clear http.proxy and https.proxy: git config --global --unset http.proxy git config --global --unset https.proxy

提交回复
热议问题