In mercurial, how do you list commiters sorted by number of commits (commit count).
Using git, you can do something like this :
git shortlog -ns
What is the equivalent command for mercurial ?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
There is no pure Mercurial solution, but you can do something like:
hg log --template "{author|person}\n" | sort | uniq -c | sort -nrIf you want to be able to type
hg shortlog, you can add the following to your.hgrcormercurial.ini: