I am writing my code in my virtual machine and always committing the folder that contains published web site to the free svn server. There is also another remote machine which is test server. I would like to make auto update in the remote machine. Is there any program can make auto update in every 30 seconds?
SVN Programs and their links: http://sanirimbuyok.blogspot.com/2010/03/svn-kaynaklar.html
If you just want to run “svn up” periodically, you can just use a scheduled task.
For example, in here’s how to do it in Windows XP. Which OS are you using?
Also, if you’re updating an asp.net website, you may want to reload your website (touch web.config or restart IIS) after updating your code, otherwise the changes may not take effect.
Edit:
To actually run the command, when you create your scheduled task, you should do something like:
That will execute the
svn upcommand against the specified path.Your other option, instead of running the command directly is to create a batch file that contains the commands you want to execute. This will give you a little bit of flexibility, should you want to do more than just run a single command.