Extension Name

This extension is not distributed with Mercurial.

Author: Brendan Cully

Download site: [http://hg.kublai.com/mercurial/extensions/alias]

1. Overview

Just enable the extension, then define your own command aliases in your hgrc. For example, the configuration below gives you a new llog command.

2. Configuration

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

[extensions]
alias = /path/to/alias
# if you want to alias commands provided by other extensions,
# alias must load after them. Use this instead:
# zzalias = /path/to/alias.py

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


CategoryExtension