Viewing a Deleted File in Git

后端 未结 3 1814
盖世英雄少女心
盖世英雄少女心 2021-01-30 02:04

I\'ve deleted a file with Git and then committed, so the file is no longer in my working copy. I want to look at the contents of that file, but not actually restore it. How can

3条回答
  •  失恋的感觉
    2021-01-30 02:30

    If this is a file you've deleted a while back and don't want to hunt for a revision, you can use (the file is named foo in this example; you can use a full path):

    git show $(git rev-list --max-count=1 --all -- foo)^:foo
    

    The rev-list invocation looks for all the revisions of foo but only lists one. Since rev-list lists in reverse chronological order, then what it lists is the last revision that changed foo, which would be the commit that deleted foo. (This is based on the assumption that git does not allow a deleted file to be changed and yet remain deleted.) You cannot just use the revision that rev-list returns as-is because foo no longer exists there. You have to ask for the one just before it which contains the last revision of the file, hence the ^ in git show.

提交回复
热议问题