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
Unless your hosting company has given you access to either cron(1)
or a shell, it will be difficult as svn, a centralised VCS, does not have a way to push things to a working directory, you are supposed to svn update
.
Several ways to do what you want, depending on the above mentioned resources available:
crontab(5)
entry that does cd $WEBSITE && svn update
ssh
can be automated by a crontab
entry on your side.cron
on your side) that does the same command.Best way to me will still be moving to a decentralized VCS (like Mercurial or git) but that is a much bigger project.