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

silverlight - Applying a style to ItemContainerStyle in C# -

c# - NullReferenceException in MySqlClient.NativeDriver -

php - How can I merge Nodes & Webform Submissions into instances of one general Content Type in Drupal 6? -