如何找到修改文件最相似的提交?
我最近收到了对我的文件的修改,并将其置于修订控制之下,但我无法发现此修改后的文件基于哪个提交。
那么,有没有办法确定修改给定文件的哪个提交与编辑后的版本差异最小?
I recently received a modification of a file of mine that I put under revision control, but I cannot spot on which commit this modified file is based.
So, is there a way to determine which commit modifying a given file is the least different to an edited version?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不知道有什么神奇的方法来检查这一点,但你可能想尝试一下:
手动更改 HEAD~10
它会告诉你修订之间有多少差异。
您可以使用以下方法自动执行此操作:
I don't know of any magical way of checking this but you might want to try this:
and manually change the HEAD~10
It will tell you how many difference there are between the revisions.
You can automate this using: