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
Post a Comment