如何列出所有曾经在 Git 中提交过文件的人?

发布于 2024-08-28 21:13:00 字数 67 浏览 10 评论 0原文

我想获得曾经提交过文件的每个人的完整列表,是否有一个命令(也许带有一些参数)可以很好地做到这一点?

谢谢

I want to get a complete list of everyone who has ever committed to a file, is there a command (blame with some arguments, maybe) do that nicely?

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

时光礼记 2024-09-04 21:13:00
git shortlog -se filename
git shortlog -se filename
怀念你的温柔 2024-09-04 21:13:00

如果您询问涉及给定文件的提交的所有作者,那么这

git shortlog --numbered --summary HEAD --follow <filename>

将是一个解决方案。

但请注意,在更复杂(不太线性)的历史记录中,--follow 选项并不总是能正常工作。

If you are asking about all authors of commits touching given file, then

git shortlog --numbered --summary HEAD --follow <filename>

would be a solution.

Please note however thet the --follow option doesn't always work correctly acros renames in more complicated (less linear) history.

一曲琵琶半遮面シ 2024-09-04 21:13:00

尝试gitk filenamegit Whatchanged -p filename

Try gitk filename or git whatchanged -p filename.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文