Differences between revisions 1 and 2
Revision 1 as of 2007-01-17 19:00:23
Size: 677
Comment: Describe churn extension
Revision 2 as of 2007-01-17 20:49:58
Size: 735
Comment: fix configuration information
Deletions are marked like this. Additions are marked like this.
Line 14: Line 14:
churn=/path/to/churn.py hgext.churn=
#or, if churn.py is not in the hgext dir:
#churn=/path/to/churn.py

Churn extension

This extension is currently being distributed along with Mercurial.

Overview

This extension creates a graph showing who changed the most lines in a commit.

It adds the churn command.

Configuration

Just add a new entry in the extensions section of the mercurial configuration file (hgrc):

[extensions]
hgext.churn=
#or, if churn.py is not in the hgext dir:
#churn=/path/to/churn.py

An aliases map file can be provided to convert recorded emails to any other desired content. The aliases file has one alias per line in the following format: <alias email> <actual email>

Usage

hg churn [-r revision range] [-a file] [--progress]

ChurnExtension (last edited 2020-09-26 08:27:08 by aayjaychan)