如何找到修改文件最相似的提交?

发布于 2024-12-21 00:09:56 字数 96 浏览 2 评论 0原文

我最近收到了对我的文件的修改,并将其置于修订控制之下,但我无法发现此修改后的文件基于哪个提交。

那么,有没有办法确定修改给定文件的哪个提交与编辑后的版本差异最小?

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 技术交流群。

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

发布评论

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

评论(1

↘紸啶 2024-12-28 00:09:56

我不知道有什么神奇的方法来检查这一点,但你可能想尝试一下:

git diff --stat HEAD..HEAD~10 -- myfile.cpp

手动更改 HEAD~10

它会告诉你修订之间有多少差异。

您可以使用以下方法自动执行此操作:

for i in {1..5}; do echo "HEAD~$i"; git diff --stat HEAD~$i..HEAD CMakeLists.txt ; done

I don't know of any magical way of checking this but you might want to try this:

git diff --stat HEAD..HEAD~10 -- myfile.cpp

and manually change the HEAD~10

It will tell you how many difference there are between the revisions.

You can automate this using:

for i in {1..5}; do echo "HEAD~$i"; git diff --stat HEAD~$i..HEAD CMakeLists.txt ; done
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文