Mercurial; Possible to list the # of commits a certain user has made? -


is possible?

use like:

hg log --user whoever@example.com | grep --count "user"   # unix or windows grep installed. hg log --user whoever@example.com | find /c "user"   # windows. 

if grep doesn't have --count option, may have equivalent -c option.


Comments

Popular posts from this blog

ASP.NET/SQL find the element ID and update database -

jquery - appear modal windows bottom -

c++ - Compiling static TagLib 1.6.3 libraries for Windows -