Which Git commit stats are easy to pull
问题 Previously I have enjoyed TortoiseSvn's ability to generate simple commit stats for a given SVN repository. I wonder what is available in Git and am particularly interested in : Number of commits per user Number of lines changed per user activity over time (for instance aggregated weekly changes) Any ideas? 回答1: Actually, git already has a command for this: git shortlog in your case, it sounds like you're interested in this form: git shortlog -sne See the --help for various options. You may