Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我知道 git shortlog -sne 和 git grep,但我需要将两者结合起来。
我正在搜索每个用户在提交消息中出现的字符串的次数。我希望输出是:
Will: 54 Dave: 34 ... etc.
有人可以帮忙吗?
如果git sne你的意思是git shortlog -sne,那么它可以--grep选择 grep 提交消息。
git sne
git shortlog -sne
--grep
git shortlog -sne --grep="a string"