Long ago I tried to sort out my system between local, web server and subversion. I got some good explanation on this question.
Unfortunately I hit a road block on the w
simply - login to your server machine and checkout the repository contents. This should be done just once.
$ svn checkout [http|svn|whatever_you_got_there]://{your_svn_repo} {checkout_directory}
Everytime you need to update your working copy with the newest one, perform update
:
$ cd {checkout_directory}
$ svn update