多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
[TOC] ## 概述 命令用于汇总git日志输出 ## 语法 ``` git log --pretty=short | git shortlog [<options>] git shortlog [<options>] [<revision range>] [[\--] <path>…​] options -n,--numbered 根据每个作者的提交次数 -s,--summary 仅提供提交计数摘要 -e,--email 显示每个作者的电子邮件地址 ``` ## 场景 ### 统计所有人的提交情况 ``` > git shortlog -s -n -e 445 陈x杰 <260083304@qq.com> 394 chxengjie <260083304@qq.com> 68 tianxan <shil@bigant.cn> 34 张x佳 <582132116@qq.com> 6 idxqj <582132116@qq.com> 1 wuxanyong <wujy@bigant.cn> ```