使用gitlog时,如何按用户进行筛选,以便只看到该用户的提交?


当前回答

cat | git log --author="authorName" > author_commits_details.txt

这将以文本格式提供提交。

其他回答

git log --author="that user"
git help log

为您提供gitlog的手册页。按/,然后键入“author”,然后按Enter键,在那里搜索“作者”。键入“n”几次以进入相关部分,其中显示:

git log --author="username"

正如已经建议的那样。

注意,这将为您提供提交的作者,但在Git中,作者可以是与提交者不同的人(例如,在Linux内核中,如果您以普通用户身份提交补丁,则可能由其他管理用户提交)?有关详细信息)

大多数时候,人们所说的用户既是提交者,也是作者。

如果您使用IntelliJ,您可以转到

View -> Tool Windows -> Git

选择“日志”并单击“用户:全部”

然后键入作者的姓名,它将显示该作者的每一次提交

由于另一个问题被锁定(可能是错误的),我将把这个放在这里:

显示作者及其提交次数:

git shortlog -nse

查找特定USERNAME的所有提交:

git log --author=USERNAME --oneline --color=never | awk '{print $1}' | xargs git show

如果要过滤自己的提交:

git log --author="<$(git config user.email)>"