shortlog log日志汇总

最后更新于:2022-04-02 02:53:33

[TOC] ## 概述 命令用于汇总git日志输出 ## 语法 ``` git log --pretty=short | git shortlog [] git shortlog [] [] [[\--] …​] options -n,--numbered 根据每个作者的提交次数 -s,--summary 仅提供提交计数摘要 -e,--email 显示每个作者的电子邮件地址 ``` ## 场景 ### 统计所有人的提交情况 ``` > git shortlog -s -n -e 445 陈x杰 <260083304@qq.com> 394 chxengjie <260083304@qq.com> 68 tianxan 34 张x佳 <582132116@qq.com> 6 idxqj <582132116@qq.com> 1 wuxanyong ```
';