Differences between revisions 3 and 4
Revision 3 as of 2007-08-26 05:52:32
Size: 957
Editor: 220
Comment:
Revision 4 as of 2007-08-26 06:35:29
Size: 952
Editor: BrendanCully
Comment:
Deletions are marked like this. Additions are marked like this.
Line 32: Line 32:
...

Parentrevspec Extension

This extension is not distributed with Mercurial.

Author: Alexis S. L. Carvalho

Download site: http://www.cecm.usp.br/~alexis/cgi-bin/hgwebdir.cgi/parentrevspec/

1. Overview

This extension allows you to use git-style suffixes to refer to the ancestors of a specific revision.

For example, if you can refer to a revision as foo, then:

1. foo^N = Nth parent of foo:

  • foo^0 = foo

  • foo^1 = first parent of foo

  • foo^2 = second parent of foo

  • foo^ = foo^1

2. foo~N = Nth first grandparent of foo

  • foo~0 = foo

  • foo~1 = foo^1 = foo^ = first parent of foo

  • foo~2 = foo^1^1 = foo^^ = first parent of first parent of foo

2. Configuration

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

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


CategoryExtension

ParentrevspecExtension (last edited 2013-10-08 01:16:30 by Matthew Gabeler-Lee)