Home > front end >  How do I configure git to use a proxy
How do I configure git to use a proxy

Time:09-02

There is a http proxy on my school, and I nees to use git there, how can I bypass git traffic through HTTP proxy?

CodePudding user response:

Consider something like:

git config --global http.proxy http://proxyUsername:[email protected]:port

It worked for me.

  •  Tags:  
  • git
  • Related