Group Extension

This extension is not distributed with Mercurial.

Author: Arne Babenhauserheide

Download site: http://freehg.org/u/ArneBab/hgext_group/

Overview

Add a comment as summary to a group of changesets, so they get shown together in the log as one contribution.

This way we can do nice looking contributions with comprehensive and concise description without having to destroy the path we took to reach them.

And for the smaller scale, I as developer can say "These are some of my commits. All together they fix bug 12345" and do the same for other related commits.

Others who do a hg log then first see my message for the whole group as if it was one signel commit (with some info, that it's a group) and can inspect the contents of the group seperately, if they want to.

It allows people to trace others work, while not cluttering the default log with information which is mostly useful while debugging or researching project history.

.hggroups should look like this:

    "description_line" rev1_hex rev2_hex ...
    
    "description_line" rev1_hex rev2_hex ...
    
    "description_line" rev1_hex rev2_hex ...

Definition for the commit message:

Group Added: FIRST LINE OF GROUP DESCRIPTION

REST OF DESCRIPTION, arbitrary length and style. 

Date and user are already in the ctx.

Sorted by the group number.

(basic question: should there be a version header in the .hggroups file, so its layout can be updated at a later time?)

The log should look like:

    changeset:   5:1a8a0fe7ab0a
    user:        Arne Babenhauserheide <bab@draketo.de>
    date:        Fri Jun 27 09:48:08 2008 +0200
    summary:     First call log when group gets started to get useful output while developing.
    
    changeset:   4:880f870098c8
    user:        Arne Babenhauserheide <bab@draketo.de>
    date:        Fri Jun 27 09:29:45 2008 +0200
    summary:     Added tag v0.0 for changeset 333aaf680223
    
    group:       0:some_short_hex
    tags:        v0.0 v0.1 v0.2 ...
    changesets:  1 3 
    user:        Arne Babenhauserheide <bab@draketo.de>
    date:        Fri Jun 27 09:29:45 2008 +0200
    summary:     Grouped changes summary. Displayed above the most recent grouped changeset. 
    
    changeset:   3:880f870098c8 in group 0
    
    changeset:   2:9db08cf8e902
    user:        Arne Babenhauserheide <bab@draketo.de>
    date:        Thu Jun 26 18:22:24 2008 +0200
    summary:     First step: Printing the REVs we want to add as group - only commandline parsing, no real action, yet.

Basic Steps:

Advanced Steps:

Initiating email to the Mercurial mailinglist:

http://selenic.com/pipermail/mercurial/2008-June/019832.html

Wishes:

Bugs:

Implemented wishes:

Configuration

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

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

[groups]
grouped_log = True


CategoryExtension