Differences between revisions 1 and 13 (spanning 12 versions)
Revision 1 as of 2010-03-06 15:08:34
Size: 338
Editor: abuehl
Comment:
Revision 13 as of 2018-06-06 13:55:50
Size: 876
Comment: built-in help
Deletions are marked like this. Additions are marked like this.
Line 2: Line 2:

/!\ This extensions is deprecated, the feature is now part of Mercurial core.
Line 7: Line 9:
''Built-in docs: hg help [[Topic:pager]]''

=== Overview ===
This extension uses the progress information logged by hg commands to draw
progress bars that are as informative as possible. Some progress bars only
offer indeterminate information, while others have a definite end point.

Example:
{{{
$ hg verify
checking changesets
checking manifests
manifests [=====================================> ] 6669/9978
}}}
Line 8: Line 25:
Configure your `.hgrc` to enable the extension by adding following lines: Configure your `.hgrc` to enable the extension by adding the following lines:
Line 18: Line 35:

Line 21: Line 36:
CategoryExtension CategoryBundledExtension

Progress Extension

/!\ This extensions is deprecated, the feature is now part of Mercurial core.

This extension is distributed with Mercurial 1.5 and later.

Author: Augie Fackler

Built-in docs: hg help pager

Overview

This extension uses the progress information logged by hg commands to draw progress bars that are as informative as possible. Some progress bars only offer indeterminate information, while others have a definite end point.

Example:

$ hg verify
checking changesets
checking manifests
manifests [=====================================>                   ] 6669/9978

Configuration

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

[extensions]
progress =

Usage

See hg help progress


CategoryBundledExtension

ProgressExtension (last edited 2018-06-06 14:16:47 by AntonShestakov)