我有一个n次提交的Git存储库。我有一个我需要的文件,该文件曾经存在于存储库中,我突然寻找并想到:“哦!那个文件去哪儿了?”是否有(一系列)Git命令会告诉我“文件n_needed.txt在提交n-13时已删除”?换句话说,无需查看每个单独的提交,也不知道我的Git存储库对每个文件进行了任何更改,是否可以快速找到具有该文件的最后一个提交,因此可以将其取回?
3 回答
潇潇雨雨
TA贡献1833条经验 获得超4个赞
git log --full-history -- [file path] 显示文件的更改,即使文件已删除也可以工作。
例:
git log --full-history -- myfile
如果您只想查看删除文件的最后一次提交,请另外使用-1,例如, git log --full-history -1 -- [file path]
杨__羊羊
TA贡献1943条经验 获得超7个赞
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 <danpal@gmail.com>
Date: Tue Jul 26 23:32:20 2011 -0500
foo
- 3 回答
- 0 关注
- 832 浏览
添加回答
举报
0/150
提交
取消