Differences between revisions 4 and 5
Revision 4 as of 2009-05-25 08:50:47
Size: 864
Editor: abuehl
Comment:
Revision 5 as of 2010-09-01 13:47:09
Size: 878
Editor: ShaneTurner
Comment: The link tot he download site is dead.
Deletions are marked like this. Additions are marked like this.
Line 7: Line 7:
Download site: [[http://hg.kublai.com/mercurial/extensions/digest]] Download site: [[http://hg.kublai.com/mercurial/extensions/digest]] ''Dead link''

Digest Extension

This extension is not distributed with Mercurial.

Author: BrendanCully

Download site: http://hg.kublai.com/mercurial/extensions/digest Dead link

Overview

This extension provides a new command, digest, which creates a small summary of the nodes present in a repository. This file is easy to transport e.g. via email, and may be used as the target of an outgoing or bundle command to produce the set of changes in a repository which are not in the repository represented by the digest. For example:

$ cd stable
$ hg digest ~/stable.digest
$ cd ../devel
$ hg bundle ~/to-stable.hg digest://~/stable.digest

Configuration

Configure your .hgrc to enable the extension by adding following lines:

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


CategoryExtensionsByOthers

DigestExtension (last edited 2011-04-02 00:43:01 by GregWard)