我知道我在某个提交中添加了一行,并且可以在私人 GitHub 帐户中看到它。在我当前的分支中它不再存在。如何找到哪个提交删除了它?
答案1
git blame
与选项一起使用--reverse
:
$ git blame --reverse START.. file.ext
其中 START 是仍然包含有问题的行的修订版。
我知道我在某个提交中添加了一行,并且可以在私人 GitHub 帐户中看到它。在我当前的分支中它不再存在。如何找到哪个提交删除了它?
git blame
与选项一起使用--reverse
:
$ git blame --reverse START.. file.ext
其中 START 是仍然包含有问题的行的修订版。