Reputation: 21
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.
Upvotes: 0
Views: 38
Reputation: 198324
You can use git ls-tree -r --name-only <commit>
.
-r
recurses into subdirectories, --name-only
prevents display of git metadata.
Upvotes: 2