TimestampMod Extension

Automatically Saves and Restores file timestamps for all files in the repository.

1. Status

This extension is not distributed with Mercurial.

Author: Nathan Durnan

Repository: http://hg.code.sf.net/p/timestampmod/code

Web page: https://sourceforge.net/projects/timestampmod/

2. Overview

TimestampMod is an extension for Mercurial DVCS that incorporates automatic saving and restoring of the modification times of files under version control. This extension is based on an original TimestampExtension by Friedrich Kastner-Masilko <face@snoopie.at> hosted at https://osdn.net/projects/mercurialextensions/scm/hg/timestamp/.

The intent of this extension is to ease the transition from manual file system based version control into the Mercurial DVCS world. Typically, manual file system based version control methods rely on copying and synchronizing files centered around file modification timestamp information. Under any modern VCS, this timestamp information is regarded as unimportant since the VCS manages all of the revision tracking between revision records. This means that the default behavior of most VCS is to set the file modification time to the time that the file was updated by the VCS instead of the original modification time. This is a behavior that can be confusing and lead to mistrust of the VCS by new users who are not yet familiar with VCS concepts.

Incorporating automatic timestamp saving and restoring into an extension allows Mercurial to add an extra level of comfort to those users who are more familiar with manually managing their version control via traditional file management.

3. Requirements

This extension was developed for use with the following:

Note that only Mercurial is required for the use of this extension. However, there are some configuration requirements that are specific to either command line Mercurial or TortoiseHg.

Also note that forward development of this extension is not guaranteed to remain backward-compatible with older Mercurial/Python/TortoiseHg versions. Some changes in Mercurial and TortoiseHg may break the backwards-compatibility of this extension.

Latest known compatible versions:

It may also be worth noting that this extension was originally developed and tested on Windows XP SP3 (32-bit), Windows 7 Professional (64-bit), and , Windows 10 Professional (64-bit). It has been confirmed to work on Linux Ubuntu 12.04. Functionality under other operating systems my not be one-hundred-percent reliable.

4. Configuration

NOTE: Full up-to-date instructions can be found on the Web page: https://sourceforge.net/projects/timestampmod/

Configure your .hgrc (or mercurial.ini file for TortoiseHg) to enable the extension by adding following lines:

[extensions]
TimestampMod = /path/to/TimestampMod.py

If using TortoiseHg, some of the hooks will need to be manually configured. Add entries into the hooks section of the configuration file (mercurial.ini) similar to the following::

[hooks]
post-merge.TimestampMod = python:/path/to/TimestampMod.py:Hook_Post_Merge
post-resolve.TimestampMod = python:/path/to/TimestampMod.py:Hook_Post_Resolve
post-revert.TimestampMod = python:/path/to/TimestampMod.py:Hook_Post_Revert

Nothing further is required to make the extension work. It will set up it's own hooks that will trigger during committing and updating actions automatically.

5. Command Usage

To see a complete list of the built-in manual commands that can be executed from the command line, enter the following command:

hg timestamp_mod --help
 - or - 
hg timestamp_mod -h

The commands to manually save and restore timestamps for all files in the repository are as follows:

hg timestamp_mod -s
hg timestamp_mod -r

To view the list of all timestamps recorded in the repository, use the timestamp_mod command without any arguments:

hg timestamp_mod

6. See also

Alternatives to this timestamp extension include:

Other options may also be available, but are unknown at the time this wiki was created.


CategoryExtensionsByOthers

TimestampModExtension (last edited 2020-04-08 17:18:25 by NathanDurnan)