vote up 4 vote down star
2

We had a power failure, that exhausted our UPS and subsequently shutdown our SVN machine. When it booted back up it, the system time was incorrect. Unfortunately, this was not caught until some people had already committed a changes. So now we have a few revisions that predate the first revision by several years.

Is there a way to correct this date, so things are in order?

flag

76% accept rate

3 Answers

vote up 5 vote down check

The date/time is a property of the revision. Figure out the revision number (or use HEAD), and modify it with propset or propedit and --revprop.

svn propset svn:date 'YYYY-MM-DDTHH:MM:SS.MMMMMMZ' --revprop -r HEAD /path/to/wc/file

You'll have to play around with it to get the right combination of settings. You can also look at the Red Book, under Advanced Properties. (I linked to 1.4, adjust to suit your version).

link|flag
Note: I acutally used tortoiseSVN (see CMS's response below), but I never specified that in the question. – Greg Dean Mar 11 at 6:37
vote up 4 vote down

Change the svn:date property of the revision:

svn propset -rXXX --revprop svn:date "2008-03-10T03:00:00.000000Z" repository

Or using TortoiseSVN, Show log -> Right click on the revision -> Show revision properties:

You will need for that the pre-revprop-change hook, a empty shell script or batch file will do the work.

link|flag
hmm - an empty bat file is not working. I get the following "'pre-revprop-change' hook failed with error output:" – Greg Dean Mar 11 at 6:04
had to change it to "exit 0" and it worked – Greg Dean Mar 11 at 6:06
@CMS - I did indeed take the tortoiseSVN path, however I'm going to accept @Andrew's answer since he was first, had the same answer (more or less), and will probably appreciate the rep more. Thanks for your help. – Greg Dean Mar 11 at 6:35
@Greg: No problem, thank you! – CMS Mar 11 at 6:52
vote up 2 vote down
  1. Enable revision property change hook
  2. Modify svn:date property, using svnlook date if you need.
link|flag

Your Answer

Get an OpenID
or

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