Git檢視專案提交人員名稱的方法如下
使用git shortlog --summary
或簡寫為git shortlog -s
可列出目前分支全部的提交人員名稱。依字母順序排列。
$ git shortlog --summary
119 John
12 Mary
23 Nico
提交者名稱前的數字為提交次數。
如果要列出專案全部分支的提交人員名稱,則在後面加上--all
參數。
$ git shortlog --summary --all
133 Alex
221 John
106 Mary
45 Nico
66 Vicky
如果要顯示提交者的email帳號,在後面加上--email
參數,或簡寫為-e
。
$ git shortlog --summary --email
119 John <john@abc.com>
12 Mary <mary@abc.com>
23 Nico <nico@abc.com>
取得Git專案中的人員名稱後就可以用來查詢指定開發者的提交紀錄。
參考:
沒有留言:
張貼留言