To ssh onto a box behind some firewall I can do the following
home$ ssh me@ssh-server
ssh-server$ ssh me@box-behind-firewall
box-behind-firewall$
So that I can do things like use git repos etc on box-behind-firewall from outside the network, I want to combine these into a single uri, e.g. something like
ssh://me@ssh-server/;ssh://me@box-behind-firewall/some/path
Is this possible, and how's it done?