[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <loom.20080501T144943-457@post.gmane.org>
Date: Thu, 1 May 2008 15:19:03 +0000 (UTC)
From: Jim Schutt <jaschut@...dia.gov>
To: linux-kernel@...r.kernel.org
Subject: Re: Slow DOWN, please!!!
Dmitri Vorobiev <dmitri.vorobiev <at> gmail.com> writes:
>
> Andrew Morton пишет:
>
> >> The network setup in our
> >> organization is such that I can use git only over http from that server.
> >
> > Don't know what to do about that, sorry. An off-site git->http proxy might
> > work, but I doubt if anyone has written the code.
Maybe your organization's http proxy will let you
tunnel the git protocol through it?
GIT_PROXY_COMMAND as described in
http://www.gelato.unsw.edu.au/archives/git/0605/20509.html
works for me, except I substitue "nc" for "socket" in the
proxy script.
I.e.:
export GIT_PROXY_COMMAND=/usr/local/bin/proxy-cmd.sh
where proxy-cmd.sh is:
#! /bin/bash
(echo "CONNECT $1:$2 HTTP/1.0"; echo; cat ) | \
nc my.proxy.com proxy_port | (read a; read a; cat )
In .git/config there's also
gitproxy = /usr/local/bin/proxy-cmd.sh
-- Jim
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists