##// END OF EJS Templates
dispatch: provide help for disabled extensions and commands...
dispatch: provide help for disabled extensions and commands Before a command is declared unknown, each extension in hgext is searched, starting with hgext.<cmdname>. If there's a matching command, a help message suggests the appropriate extension and how to enable it. Every extension could potentially be imported, but for cases like rebase, relink, etc. only one extension is imported. For the case of "hg help disabledext", if the extension is in hgext, the extension description is read and a similar help suggestion is printed. No extension import occurs.

File last commit:

r9670:7d56b6ff default
r10364:de1e7099 default
Show More
test-churn.out
40 lines | 1.7 KiB | text/plain | TextLexer
Patrick Mezard
Make churn an official extension
r6348 % create test repository
adding a
adding b
adding c
madhu@madhu
Returns lines changed for paths specified as arguments correctly....
r7870 % churn separate directories
user1 1 ***************************************************************
Patrick Mezard
Make churn an official extension
r6348 % churn all
user3 3 ***************************************************************
madhu@madhu
Returns lines changed for paths specified as arguments correctly....
r7870 user1 3 ***************************************************************
Patrick Mezard
Make churn an official extension
r6348 user2 2 ******************************************
Alexander Solovyov
churn and stats commands merged
r7070 % churn up to rev 2
Patrick Mezard
Make churn an official extension
r6348 user2 2 ***************************************************************
Alexander Solovyov
churn: ability to display added/removed lines separately
r9669 user1 1 ********************************
Patrick Mezard
Make churn an official extension
r6348 % churn with aliases
alias3 3 **************************************************************
madhu@madhu
Returns lines changed for paths specified as arguments correctly....
r7870 alias1 3 **************************************************************
Patrick Mezard
Make churn an official extension
r6348 user2 2 *****************************************
Martin Geisler
churn: use .hgchurn in repo root as default map file
r8254 % churn with .hgchurn
alias3 3 **************************************************************
alias1 3 **************************************************************
user2 2 *****************************************
Patrick Mezard
Make churn an official extension
r6348 % churn with column specifier
user3 3 ***********************
madhu@madhu
Returns lines changed for paths specified as arguments correctly....
r7870 user1 3 ***********************
Patrick Mezard
Make churn an official extension
r6348 user2 2 ***************
Alexander Solovyov
churn and stats commands merged
r7070 % churn by hour
Alexander Solovyov
churn: ability to display added/removed lines separately
r9669 06 1 *****************
madhu@madhu
Returns lines changed for paths specified as arguments correctly....
r7870 09 2 *********************************
12 4 ******************************************************************
Alexander Solovyov
churn: ability to display added/removed lines separately
r9669 13 1 *****************
% churn with separated added/removed lines
user1 +3/-1 +++++++++++++++++++++++++++++++++++++++++--------------
user3 +3/-0 +++++++++++++++++++++++++++++++++++++++++
user2 +2/-0 +++++++++++++++++++++++++++
Alexander Solovyov
churn: fix changeset count (broken by 9b127e888640)
r9670 % changeset number churn
user1 4 ***************************************************************
user3 3 ***********************************************
user2 2 ********************************
Nicolas Dumazet
churn: issue833 was reintroduced in 9bc46d069a76, correct it and add a test
r9388 adding foo
test 0