使用 git 查找提交 A 与提交 B 相比已更改的文件?

发布于 2024-12-11 03:48:00 字数 161 浏览 0 评论 0原文

我正在寻找类似“git diff --name-only B A”的内容,但仅限于提交 A 中包含的文件。或者,换句话说,我需要使用提交 A 更改的所有文件(不包括历史记录)的列表与提交 B 相同(包括历史记录)。

在 git 中有没有简单的方法可以做到这一点?

问候, 约亨

I am looking for something like "git diff --name-only B A", but limited to files contained in commit A. Or, in other words, I need a list of all files changed with commit A (excluding history) that are not the same as in commit B (including history).

Is there an easy way to do this in git?

Regards,
Jochen

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

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

发布评论

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

评论(1

孤单情人 2024-12-18 03:48:00

You can use the --diff-filter option to do this. To find only the files that are modified (rather than deleted or added, say) between A and B, you could do:

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