Git number of commits per author on all branches

前端 未结 1 862
花落未央
花落未央 2020-12-12 08:39

I\'d like to get the number of commits per author on all branches. I see that

git shortlog -s -n

Prints a very nice list but it is not coun

相关标签:
1条回答
  • 2020-12-12 09:36
    git shortlog -s -n --all --no-merges
    

    Will give you statistics for all branches.

    EDIT: Added --no-merges to exclude statistics from merge commits.

    0 讨论(0)
提交回复
热议问题