如何查看两个分支之间一个文件的不同提交列表?
在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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
使用选项
--left-right
和--cherry-pick
到git log
。并指定文件名,如 Michael Krelin 和 knittl 提到的。
Play with the options
--left-right
and--cherry-pick
togit log
.And specify the file name, as mentioned by Michael Krelin and knittl.
尝试指定 git log 的路径吗?
Try specifying path to
git log
?调用 git log 时使用文件规范:
Use a filespec when invoking git log: