tommy
tommy

Reputation:

Subversion: how to auto update a repository

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

Upvotes: 1

Views: 1007

Answers (3)

Elie Xu
Elie Xu

Reputation: 625

You can write a small script for this.

Upvotes: 0

Alex Barrett
Alex Barrett

Reputation: 16455

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.

Upvotes: 4

dariol
dariol

Reputation: 1979

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

Upvotes: 3

Related Questions