vote up 1 vote down star

Hi there,

With subversion is there a way to automatically update a repository at say 6am every morning?

flag

2 Answers

vote up 3 vote down

You can do it by command line and scheduler build on your OS.

link|flag
thanks. So do you know how I can do it by command line? – tommy Sep 23 at 23:41
windows has an 'at' command. Something like: at 6am foo.exe – silky Sep 23 at 23:43
Ok. I'm using Windows XP. Yea i can use windows schedule to kick it off. Just wondering what command line query to use – tommy Sep 23 at 23:47
svn update (in the directory) – silky Sep 23 at 23:52
2  
Actually svn update in the directory is correct :) – Alex Barrett Sep 24 at 0:34
show 1 more comment
vote up 4 vote down

To run a command to update an SVN working copy at 6:00 am every morning on Windows:

at 06:00 /every:M,T,W,Th,F,S,Su svn up path\to\wc

You could take out S and Su to have it only run on weekdays.

link|flag
I am assuming that by 'repository' you mean working copy btw. – Alex Barrett Sep 24 at 0:35

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.