归咎于不同位置的文件的早期版本

发布于 2024-12-06 18:10:29 字数 425 浏览 0 评论 0原文

有一次我的 git 存储库的路径被重新组织了。

我经常想在移动之前对文件进行修订。

指责当前存储库中不存在的文件的 git Blame 咒语是什么?

我尝试过:

> git blame new/path/to/file old_rev
fatal: no such path ... in old_rev

> git blame old/path/to/file old_rev
fatal: cannot stat path ... in old_rev

> git blame old_rev:old/path/to/file old_rev
fatal: cannot stat path ... in old_rev

显然我可以检查 old_rev 并责怪适当的路径,但我宁愿避免这种情况。

At one point my git repository had its paths reorganized.

I often want to do a blame on a file at a revision before the move.

What's the git blame incantation to blame a file that doesn't exist in the current repository?

I tried:

> git blame new/path/to/file old_rev
fatal: no such path ... in old_rev

> git blame old/path/to/file old_rev
fatal: cannot stat path ... in old_rev

> git blame old_rev:old/path/to/file old_rev
fatal: cannot stat path ... in old_rev

Clearly I could just check out old_rev and blame the appropriate path, but I'd rather avoid that.

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

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

发布评论

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

评论(1

给不了的爱 2024-12-13 18:10:29

您可以使用 gitblame --follow 来让blame跟随您的重命名。

我还发现您的参数顺序错误,请尝试以下操作:

git blame old_rev -- old/path/to/file

You can use git blame --follow to make blame follow your renames.

I also see your parameters are in the wrong order, try the following:

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