如何查看两个分支之间一个文件的不同提交列表?

发布于 2024-12-17 07:30:27 字数 77 浏览 0 评论 0原文

在git中有什么办法可以做到这一点吗?只需查看两个分支之间的不同提交的列表,我不能只查看日志,因为几个月来这两个分支已经有数十个不同的提交。

Is there any way to do this in git? Just see a list of the differing commits between two branches, I can't just look at the logs, because there have been dozens of different commits over several months to the two branches.

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

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

发布评论

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

评论(3

倾城°AllureLove 2024-12-24 07:30:28

使用选项 --left-right--cherry-pickgit log

并指定文件名,如 Michael Krelin 和 knittl 提到的。

Play with the options --left-right and --cherry-pick to git log.

And specify the file name, as mentioned by Michael Krelin and knittl.

第几種人 2024-12-24 07:30:28

尝试指定 git log 的路径吗?

Try specifying path to git log?

尝蛊 2024-12-24 07:30:27

调用 git log 时使用文件规范:

git log commit1 commit2 -- file1 file2

Use a filespec when invoking git log:

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