Differences between revisions 1 and 8 (spanning 7 versions)
Revision 1 as of 2007-06-17 22:49:36
Size: 853
Editor: S01060016b6db031a
Comment: Brief sketch of the digest extension
Revision 8 as of 2011-04-02 00:43:01
Size: 857
Editor: GregWard
Comment: standard link terminology
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
== Extension Name == == Digest Extension ==
Line 7: Line 7:
Download site: [http://hg.kublai.com/mercurial/extensions/digest] Repository: http://hg.kublai.com/mercurial/extensions/digest
Line 28: Line 28:
Line 30: Line 29:
CategoryExtension CategoryExtensionsByOthers

Digest Extension

This extension is not distributed with Mercurial.

Author: BrendanCully

Repository: http://hg.kublai.com/mercurial/extensions/digest

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)