标签: git
我有2个git分支old和new。 new是old之前的一些提交,因此可以进行快速合并。
old
new
如何在old到new的提交中列出所有贡献者?
我可以用
git log old...new
但我怎样才能列出提交者?
答案 0 :(得分:1)
要列出其提交中的所有提交者,请使用git shortlog,如果您只想查看提交的人数和次数,则不会使用git shortlog -sn。
git shortlog
git shortlog -sn