Cool, thanks. I'll give these a try! If nothing else, I'll just manually make a copy, now that I know it's accessible outside of the firewall.
Cheers, Robert PS, thank you to everyone who has worked on the Gentoo Prefix project. It's been enormously helpful to me (and is just plain cool). -----Original Message----- From: [email protected] [[email protected]<mailto:[email protected]>] Sent: Thursday, February 05, 2015 03:22 AM Eastern Standard Time To: [email protected] Subject: Re: [gentoo-alt] Re: Installing Prefix/libc : heroxbd overlay Michael Haubenwallner <[email protected]> writes: > On 02/04/2015 02:47 PM, McGehee, Robert wrote: >> Ok, interesting. I think the problem is that I can't get to git:// port due >> to corporate firewall, > > In case you're able to ssh somewhere outside the firewall, you can use this > one: > > $ ( echo '#! /bin/sh'; echo 'ssh -W $1:$2' your-outside-machine ) > > ~/proxycmd > $ chmod +x ~/proxycmd > > And then do the git commands with: > > $ GIT_PROXY_COMMAND=~/proxycmd git ... Thanks Michael. Or a proxy wrapper: $ cat proxy-wrapper #!/bin/sh nc.openbsd -x ${outside-proxy-permitting-https-connect}:3128 -Xconnect $* $ GIT_PROXY_COMMAND=./proxy-wrapper git ...
