tags:

views:

45

answers:

2

Is it possible?

+4  A: 

Use something like:

hg log --user [email protected] | grep --count "user"   # UNIX or Windows with grep installed.
hg log --user [email protected] | find /c "user"   # Windows.

If your grep doesn't have a --count option, it may well have an equivalent -c option.

Niall C.
better to use `log -q |wc -l`
tonfa
A: 

I would use the churn extension which generates nice histograms for this. It looks like this for one of my repositories:

$ hg churn --changesets
[email protected]               1034 ******************************************
[email protected]              132 *****
[email protected]                   102 ****
[email protected]     87 ****
[email protected]                 32 *
[email protected]                15 *
[email protected]                13 *
[email protected]                   10 
[email protected]               6 
[email protected]              5 
[email protected]                   1 
Marc X. Makkes                  1 
Martin Geisler