08/18: list the files in a revision
Categories:
git
Posted by: bjb
git ls-tree -r HEAD
I tried searching for how to list the files in a revision in git, and found only how to list the changed files in a revision.
I knew that gitk shows a list of files and directories in any given repo. So I looked in it (it’s a wish script) to find out how it gets the list of files for each revision. Found it around 3/4 of the way down, in proc gettree
.
Probably most anything you’d want to do with git, you can find it in gitk.