ある時点で、私の 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 を調べて適切なパスを非難することもできますが、それは避けたいと思います。