Differences between revisions 13 and 14
Revision 13 as of 2009-08-10 08:00:18
Size: 925
Editor: TillPlewe
Comment:
Revision 14 as of 2009-08-10 09:39:00
Size: 949
Comment: Emphasize being part of Mercurial after 1.3.
Deletions are marked like this. Additions are marked like this.
Line 7: Line 7:
Line 10: Line 9:
Just enable the extension, then define your own command aliases in your hgrc.
For example, the configuration below gives you a new {{{llog}}} command.
/!\ In Mercurial 1.3 and newer, this is no longer an extension; the functionality (same as before) is now available from core Mercurial.

Define your own shortcuts for Mercurial's command-line user interface.
Line 14: Line 14:
Configure your .hgrc to enable the extension by adding the following lines:
Line 16: Line 15:
{{{
[extensions]
alias =

[alias]
# short log
llog = log --limit 10
}}}

Starting with version 1.3 it suffices to add:
Add the following lines to a hgrc to add a llog command:
Line 33: Line 23:
=== Future Work === (In 1.2.1 and earlier, you also need to activate the extension from the {{{[extensions]}}} section.)

=== Ideas for improvements ===

Alias Extension

This extension is currently being distributed along with Mercurial.

Author: Brendan Cully

1. Overview

/!\ In Mercurial 1.3 and newer, this is no longer an extension; the functionality (same as before) is now available from core Mercurial.

Define your own shortcuts for Mercurial's command-line user interface.

2. Configuration

Add the following lines to a hgrc to add a llog command:

[alias]
# short log
llog = log --limit 10

(In 1.2.1 and earlier, you also need to activate the extension from the [extensions] section.)

3. Ideas for improvements

  • Support for global options like --config in extension definitions
  • Shell aliases
  • Argument substitution
    mq = hg -R $(hg root)/.hg/patches $*
  • Pipes
    hgrep = hg manifest | grep $*
  • Recursive alias definitions:
    foo = bar
    bar = log


CategoryExtension

AliasExtension (last edited 2013-08-08 00:05:19 by rcl)