#### 1. git shortlog 介紹 --- `git shortlog` 命令用于匯總 git 日志。 該命令會(huì)將 git 的提交記錄按照作者進(jìn)行分組,并顯示每個(gè)作者 commit 的次數(shù) #### 2. git shortlog 使用 --- 按照作者進(jìn)行分組,顯示每個(gè)作者提交次數(shù)和所有提交記錄 ``` git shortlog ``` `-n, --numbered` 根據(jù)每個(gè)作者的提交數(shù)量降序排列,默認(rèn)是按照作者名稱字母排序的 ``` git shortlog --numbered ``` `-s, --summary` 不列出每個(gè)提交記錄,只顯示提交次數(shù) ``` git shortlog --summary ``` 多個(gè)參數(shù)結(jié)合使用 ``` # 按照提交次數(shù)排序,并且不列出提交記錄 git shortlog -n -s # 多個(gè)參數(shù)可以連寫 git shortlog -ns ```