显示所有分支中用户的最新提交

Show latest commit for a user across all branches

我尝试使用此命令获取用户的最新提交

git log --author=Jon

returns 提交列表,但它们似乎只包括在此分支上进行的提交(包括合并等)

如何在所有分支中搜索特定用户的最新提交?

您只需为此添加 --all 标志。

它将把每个现有的分支提示作为搜索的候选。

(doc)