顯示每位作者的提交總數
為了獲得每個開發人員或貢獻者在儲存庫上進行的提交總數,你只需使用 git shortlog
:
git shortlog -s
它提供作者姓名和每個提交的數量。
此外,如果要在所有分支上計算結果,請在命令中新增 --all
標誌:
git shortlog -s --all
為了獲得每個開發人員或貢獻者在儲存庫上進行的提交總數,你只需使用 git shortlog
:
git shortlog -s
它提供作者姓名和每個提交的數量。
此外,如果要在所有分支上計算結果,請在命令中新增 --all
標誌:
git shortlog -s --all