标签: git git-commit
我正在搜索git命令以获取作者的所有提交。有很多选项可以做到这一点。例如
git log --author="<author>" --pretty="%H"
在<>中使用作者姓名,相对于作者的电子邮件地址,提交次数有所不同。
如果我使用git shortlog -sn和git shortlog -sne,也会发生类似的情况。
git shortlog -sn
git shortlog -sne
为什么使用名称和电子邮件的提交次数不同?