From mboxrd@z Thu Jan 1 00:00:00 1970 From: Konrad Rzeszutek Wilk Subject: Re: Dom0 source download issue Date: Fri, 22 Jul 2011 11:24:42 -0400 Message-ID: <20110722152442.GB4217@dumpdata.com> References: <1311321022.32010.201.camel@zakaz.uk.xensource.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Content-Disposition: inline In-Reply-To: List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xensource.com Errors-To: xen-devel-bounces@lists.xensource.com To: "Huang2, Wei" Cc: Fitzhardinge , "xen-devel@lists.xensource.com" , Jeremy@rcsinet13.oracle.com, Ian Campbell List-Id: xen-devel@lists.xenproject.org On Fri, Jul 22, 2011 at 09:43:53AM -0500, Huang2, Wei wrote: > Unfortunately git port is blocked by IT firewall. HTTP is the only method available. Nonsense. It is there for you to subvert it. Like this: If you are behind a firewall, git will have trouble. You need to get 'corkscrew' and setup git to tunnel the traffic via the appropiate port. 1). In your .gitconfig have this: [core] gitproxy = $HOME/git-proxy 2). Create a file call $HOME/git-proxy with: #!/bin/sh exec /usr/local/bin/corkscrew 80 $* And that will fix your problem.