I've just recently got Subversion running on my development server.
Now I'm using this to commit to the dev server:
Code:
/path/to/svn commit --file ~/svn.log
I would like to setup another svn repo on my live server.
Actually now that I think about it, I don't need a repo setup on the server do I? As long as the client tools are installed I can run:
Code:
/path/to/svn checkout http://devServer/svn/trunk htdocs
Right?