Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I use Bazaar with a HTTP proxy?

How do I use Bazaar with a HTTP proxy? I can't find anything in their documentation.

like image 680
Joshua Avatar asked Jun 24 '09 15:06

Joshua


2 Answers

Set the http_proxy environment variable to point to your proxy, eg. (on Windows):

set http_proxy=http://webcache.mycompany.com:3128/

See the "Environment variables" section of http://bazaar-vcs.org/ConfiguringBzr

like image 94
RichieHindle Avatar answered Sep 21 '22 13:09

RichieHindle


Also do not forget to set HTTPS_PROXY environment variable.

set https_proxy=http://my.proxy.com:3128/
like image 40
sax Avatar answered Sep 20 '22 13:09

sax