What were existing files from working-tree at a given commit?

46 Views Asked by At

I want to know, if it's possible, what were the existing files from my working-tree at the time that a concrete commit was made.

1

There are 1 best solutions below

7
On

You can use git ls-tree -r --name-only <commit>.

-r recurses into subdirectories, --name-only prevents display of git metadata.