I need a version control system that works like Subversion but is able to keep the 'modified' timestamp (date) of each file.
We need to version our setup projects. In this case it is imporatant that the input files (dll/exe's) keep their timestamp.
What is the best tool to do this? (OS: Windows)
Updated:
Here's an example of what I would like it to do:
- put "foo.dll" (modified 1/1/2009) and "bar.dll" (modified 2/2/2009) into the working directory
- create/test the setup and do a single commit
- when another developer checks out the project both foo.dll and bar.dll should have their orginal modified date (1/1/2009 and 2/2/2009)
Our current workaround is to zip each dll (the modified date is kept in the zip) but I would prefer something easier.