如何在给定提交作者的git仓库中检索所有提交消息的列表?
答案 0 :(得分:5)
git log --all --author <author regex>
通过阅读the documentation轻松解决问题。请注意,它是一个正则表达式,因此某些字符可能需要转义。
答案 1 :(得分:4)
在命令行中:
git log --author=<author name> --pretty=format:"%h - %an :%cn %s"
h - 简短形式的哈希
an - 作者姓名
cn - 提交者名称
s - 消息(主题)