On Mon, 12 January 2009, Mike Hommey wrote: > On Mon, Jan 12, 2009 at 12:13:44PM +0100, Jakub Narebski <jnareb@xxxxxxxxx> wrote: >> Currently I have the folowing in my ~/.ssh/config: >> >> # TP S.A. blocks repo.or.cz >> Host repo.or.cz >> NoHostAuthenticationForLocalhost yes >> HostName localhost >> Port 2222 >> >> and I can simply use "git push repo" without any changes. >> But I have to run >> >> $ ssh -f -N -L 2222:repo.or.cz:22 jnareb@xxxxxxxxxxxxxxxx >> >> first. Is there any way to automate this? > > Something like the following should do the trick: > Host repo.or.cz > ProxyCommand ssh jnareb@xxxxxxxxxxxxxxxx nc %h %p > > You will need nc (netcat) installed on the host.example.com server, though. I assume that is both in place of above ~/.ssh/config configuration, and making unnecessary port forwarding (ssh -L) invocation, isn't it? P.S. What should I put in core.gitProxy to make it possible to fetch via git:// protocol from repo.or.cz? -- Jakub Narebski Poland -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html