--group=<type>
[…]
If --group is specified multiple times, commits are counted under
each value (but again, only once per unique value in that
commit). For example, git shortlog --group=author
--group=trailer:co-authored-by counts both authors and co-authors.
3条答案
按热度按时间q9rjltbz1#
你可以,在这是一个拖车:
虽然Git对此一无所知,但trailer模式允许添加任何你想要的
key=value
到提交消息中。从Git 2.32(Q2 2021)开始,你可以提交任何你想要的预告片。
iqih9akk2#
如何让git显示合作者
你不能这么做。Git提交没有合著者。GitHub有一个合著者功能,其他托管环境可能也支持这类功能;但Git自己对此一无所知。
bnl4lu3b3#
看起来你不能用
git log
做到这一点,但是你可以信任git shortlog
中的合作者。从
man git shortlog
开始:承诺:
使用
git shortlog
:使用
git shortlog --group=author --group=trailer:co-authored-by
: