Hello
Considering that I’ve setup a subversion server on a virtual machine and it binds ssh on port 1022, I had to find a way to tell to svn client how to contact that port…
So, how dows it works?
It’s simple:
- Edit ~/.subversion/config
- Find tunnels sections and insert the following lines:
[tunnels] ssh = ssh -p 1022
- It’s done, save the file and use svn client as always.
Byez.