协慌网

登录 贡献 社区

查找在 Git 中删除文件的时间

我有一个带有 n 次提交的 Git 存储库。

我有一个我需要的文件,以前曾经在存储库中,我突然寻找并想 “哦!那个文件去哪了?”

是否有(系列)Git 命令会告诉我 “在提交 n-13 时删除了文件 really_needed.txt”?

换句话说,如果不查看每个单独的提交,并且知道我的 Git repo 对每个文件进行了每次更改,我是否可以快速找到该文件的最后一次提交,以便我可以将其恢复?

答案

git log --full-history -- [file path]显示git log --full-history -- [file path]的更改,即使文件被删除也能正常工作。

例:

git log --full-history  -- myfile

如果你想只看到最后一次提交,删除文件另外使用 - 1,例如, git log --full-history -1 -- [file path]

请参阅哪个提交删除了文件

简短回答:

git log --full-history -- your_file

将显示您的 repo 历史记录中的所有提交,包括触及your_file合并提交。最后一个(顶部)是删除文件的那个。

一些解释:

这里的--full-history标志很重要。没有它,Git 会在您询问文件日志时执行 “历史简化”。文档详细介绍了它的确切运作方式,我缺乏尝试从源代码中弄清楚所需的勇气和勇气,但是git-log 文档有很多话要说:

默认模式

将历史简化为最简单的历史,解释树的最终状态。最简单的,因为如果最终结果相同(即合并具有相同内容的分支),它会修剪一些侧分支

删除我们想要的历史记录的文件时,这显然是有意义的 ,因为解释已删除文件的最终状态的最简单历史记录不是历史记录 。没有--full-history git log是否会声称该文件从未创建过?不幸的是,是的。这是一个演示:

mark@lunchbox:~/example$ <b><i>git init</i></b>
Initialised empty Git repository in /home/mark/example/.git/
mark@lunchbox:~/example$ <b><i>touch foo && git add foo && git commit -m "Added foo"</i></b>
[master (root-commit) ddff7a7] Added foo
 1 file changed, 0 insertions(+), 0 deletions(-)
 create mode 100644 foo
mark@lunchbox:~/example$ <b><i>git checkout -b newbranch</i></b>
Switched to a new branch 'newbranch'
mark@lunchbox:~/example$ <b><i>touch bar && git add bar && git commit -m "Added bar"</i></b>
[newbranch 7f9299a] Added bar
 1 file changed, 0 insertions(+), 0 deletions(-)
 create mode 100644 bar
mark@lunchbox:~/example$ <b><i>git checkout master</i></b>
Switched to branch 'master'
mark@lunchbox:~/example$ <b><i>git rm foo && git commit -m "Deleted foo"</i></b>
rm 'foo'
[master 7740344] Deleted foo
 1 file changed, 0 insertions(+), 0 deletions(-)
 delete mode 100644 foo
mark@lunchbox:~/example$ <b><i>git checkout newbranch</i></b>
Switched to branch 'newbranch'
mark@lunchbox:~/example$ <b><i>git rm bar && git commit -m "Deleted bar"</i></b>
rm 'bar'
[newbranch 873ed35] Deleted bar
 1 file changed, 0 insertions(+), 0 deletions(-)
 delete mode 100644 bar
mark@lunchbox:~/example$ <b><i>git checkout master</i></b>
Switched to branch 'master'
mark@lunchbox:~/example$ <b><i>git merge newbranch</i></b>
Already up-to-date!
Merge made by the 'recursive' strategy.
mark@lunchbox:~/example$ <b><i>git log -- foo</i></b>
commit 77403443a13a93073289f95a782307b1ebc21162
Author: Mark Amery 
Date:   Tue Jan 12 22:50:50 2016 +0000

    Deleted foo

commit ddff7a78068aefb7a4d19c82e718099cf57be694
Author: Mark Amery 
Date:   Tue Jan 12 22:50:19 2016 +0000

    Added foo
mark@lunchbox:~/example$ <b><i>git log -- bar</i></b>
mark@lunchbox:~/example$ <b><i>git log --full-history -- foo</i></b>
commit 2463e56a21e8ee529a59b63f2c6fcc9914a2b37c
Merge: 7740344 873ed35
Author: Mark Amery 
Date:   Tue Jan 12 22:51:36 2016 +0000

    Merge branch 'newbranch'

commit 77403443a13a93073289f95a782307b1ebc21162
Author: Mark Amery 
Date:   Tue Jan 12 22:50:50 2016 +0000

    Deleted foo

commit ddff7a78068aefb7a4d19c82e718099cf57be694
Author: Mark Amery 
Date:   Tue Jan 12 22:50:19 2016 +0000

    Added foo
mark@lunchbox:~/example$ <b><i>git log --full-history -- bar</i></b>
commit 873ed352c5e0f296b26d1582b3b0b2d99e40d37c
Author: Mark Amery 
Date:   Tue Jan 12 22:51:29 2016 +0000

    Deleted bar

commit 7f9299a80cc9114bf9f415e1e9a849f5d02f94ec
Author: Mark Amery 
Date:   Tue Jan 12 22:50:38 2016 +0000

    Added bar

注意上面的终端转储中的git log -- bar如何导致字面上没有输出; Git 是 “简化” 史册成小说,其中bar根本不存在。另一方面, git log --full-history -- bar为我们提供了创建bar的提交以及删除它的提交。

需要明确的是:这个问题不仅仅是理论问题。我只查看了文档并发现了--full-history标志,因为git log -- some_file在我试图跟踪已删除的文件的真实存储库中失败了。当你试图理解当前存在的文件是如何处于当前状态时,历史简化有时会有所帮助,但是当试图追踪文件删除时 ,更有可能通过隐藏你关心的提交来搞砸你。始终对此用例使用--full-history标志。

Git 日志,但你需要在路径前加上--

例如:

dan-mac:test dani$ git log file1.txt
fatal: ambiguous argument 'file1.txt': unknown revision or path not in the working tree.

dan-mac:test dani$ git log -- file1.txt
 commit 0f7c4e1c36e0b39225d10b26f3dea40ad128b976
 Author: Daniel Palacio <[email protected]>
 Date:   Tue Jul 26 23:32:20 2011 -0500

 foo