如何在分支之间的git历史记录中获取所有贡献者

时间:2016-09-16 13:21:00

标签: git

我有2个git分支oldnewnewold之前的一些提交,因此可以进行快速合并。

如何在oldnew的提交中列出所有贡献者?

我可以用

列出所有提交
git log old...new

但我怎样才能列出提交者?

1 个答案:

答案 0 :(得分:1)

要列出其提交中的所有提交者,请使用git shortlog,如果您只想查看提交的人数和次数,则不会使用git shortlog -sn