Paul Mead <paul.d.m...@gmail.com> wrote:

> I'm trying to use git to keep my org-mode version up to date on my personal 
> and
> work laptops.
> 
> The only problem is that my work laptop has a firewall on it which does not
> allow git traffic to pass.
> 
> <snip>

There is another possibility that you might want to investigate: if
there is a SOCKS proxy server available at work, you can arrange to pass
git traffic through that.  You'll need a SOCKS client (e.g. dante or
tsocks works fine on Linux - I'm completely ignorant about Windows), and
a tiny amount of configuration to make your client point to the SOCKS
server. Then instead of

        git clone git://...
        git pull

you say

        socksify git clone git://...
        socksify git pull

(that's with dante) or

        tsocks git clone git://...
        tsocks git pull

(with tsocks) and you are done.

Also, it might be possible to use HTTP (presumably, you have an http
proxy at work to get through the firewall) instead of the GIT protocol
to do the pull, but I believe that depends on whether the repository has
been set up properly to allow that - I have not tried it in the org
case, but I was using it for the mainline Linux kernel before I had set
up the SOCKS proxy service: it was slower but it worked.

HTH,
Nick


_______________________________________________
Emacs-orgmode mailing list
Remember: use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode

Reply via email to