On Tue, Oct 17, 2023 at 1:15 AM Jaydeep Das <jaydeepjd.8914@xxxxxxxxx> wrote: > To make git work through proxy, we need to set the `http.proxy` config > or need to set `http_proxy` environment variable. > > However wouldn't it be better if there was a flag in the command > itself (like npm) which > overrides whatever proxy is set. Something like > > git clone --proxy "http://..." <url> The -c option allows you to specify configuration on the command-line, so: git -c http.proxy="http://..." clone <url> should do what you want.