vote up 2 vote down star
1

I seem to remember being able to get Tortoise SVN to set the last-modified timestamp for files to the timestamp from the revision when performing an update. So if someone committed a file 5 days ago and I update it, the modified timestamp will be 5 days ago, not today.

Except for the life of me I can't remember/find where the option is.

Any suggestions, or am I just completely wrong about this?

Thanks!

flag

75% accept rate
1  
I assume you have a good reason for wanting to do this and you know what you're doing, but for posterity, I thought I'd add a warning... if you use this option along with some kind of incremental build tool (such as make), files may change due to the update but still have a timestamp from before your last build, which will mean they won't be re-built the next time you build. This can be a source of all sorts of strange errors (mostly relating to linking, in languages that have linking). – rmeador Jun 3 at 22:25
My related question is: can this be done on a per-repository basis, rather than for all repositories? – Craig McQueen Jul 8 at 2:35

2 Answers

vote up 3 vote down check

When I go to the Settings option in the TortoiseSVN menu, I see an option to "Set file dates to the last commit time." Is this what you're looking for?

link|flag
I knew it was a problem between chair and keyboard. Thanks! – Niall Connaughton Jun 3 at 14:54
vote up 2 vote down

Not sure if Tortoise uses the svn client as a backend, but if it does, there is an option in the svn config file:

use-commit-times = yes

Sorry if this doesn't apply on your platform, but I'll mention it anyway. It works for those using the svn commandline client.

link|flag
At least there's a button for launching and editor for the svn config file in Tortoise's preferences UI. – laalto Jun 3 at 15:49

Your Answer

Get an OpenID
or

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