I have four computers in use:
- My desktop, on which I write code
- My server, on which I checkout SVN repositories, test the written code, and commit revisions
- The SVN server
- The server I will use in the end
While developing, I'm working on the desktop and the server a lot. When I want to put the latest revision to the end server, I have to do this via FTP, since it doesn't support SVN. So I have to do:
- Checkout
- Upload with FTP
It would be useful if I could do this with just one command, like:
- Checkout to other server with FTP
Is there a command which does that? Or another faster way than what I'm doing now?