I'd like to get a list of all the files present in git at a given point.
I've tried issuing something like:
git show --pretty="format:" --name-only f21b25e76d146
This only shows the files that where added though, not ALL the files present in the working directory at that specific commit. Is there a way to do so?
Thanks a lot in advance.