I wrote a java program that using the SVNKit. The timestamp of checked out file is system time ,instead of the commit time 。How can I check out file with the commit time.

link|improve this question
feedback

1 Answer

up vote 1 down vote accepted

Look at ISVNOptions#setUseCommitTimes(). From there:

Enables or disables the commit-times option. The commit-times option makes checkout/update/switch/revert operations put last-committed timestamps on every file they touch.

This option corresponds to the 'use-commit-times' option that can be found in the SVN's config file under the [miscellany] section.

link|improve this answer
thank for your help. :-) – bingcheng Dec 5 '11 at 9:00
feedback

Your Answer

 
or
required, but never shown

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