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.