Size: 641
Comment: alias is not official yet
|
Size: 912
Comment:
|
Deletions are marked like this. | Additions are marked like this. |
Line 1: | Line 1: |
== Alias Extension == | = Alias Extension = |
Line 3: | Line 3: |
'''This extension is not distributed with Mercurial yet''', but is already available in development repositories (see DeveloperRepos) | Define convenient command aliases. |
Line 5: | Line 5: |
Download site: http://hg.kublai.com/mercurial/extensions/alias | <<TableOfContents>> |
Line 7: | Line 7: |
== Status == | |
Line 8: | Line 9: |
''Author: Brendan Cully'' | {i} '''This extension has been moved into core Mercurial as of 1.3.''' |
Line 10: | Line 11: |
''Original author: Brendan Cully'' | |
Line 11: | Line 13: |
=== Overview === | == Overview == |
Line 13: | Line 15: |
Just enable the extension, then define your own command aliases in your hgrc. For example, the configuration below gives you a new {{{llog}}} command. |
Define your own shortcuts for Mercurial's command-line user interface. |
Line 16: | Line 17: |
=== Configuration === Configure your .hgrc to enable the extension by adding following lines: |
== Configuration == Add the following lines to a hgrc to add a llog command: |
Line 20: | Line 22: |
[extensions] alias = |
|
Line 28: | Line 27: |
(In 1.2.1 and earlier, you also need to activate the extension from the {{{[extensions]}}} section.) == 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 }}} |
|
Line 29: | Line 47: |
CategoryExtension | CategoryBundledExtension CategoryHistorical |
Alias Extension
Define convenient command aliases.
Status
This extension has been moved into core Mercurial as of 1.3.
Original author: Brendan Cully
Overview
Define your own shortcuts for Mercurial's command-line user interface.
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.)
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