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.
2010-10-07 18:18:11
better to use `log -q |wc -l`
tonfa
2010-10-07 21:27:42
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
2010-10-18 07:29:05