I usually use git diff-tree <tree-ish>
with these options:
--no-commit-id --name-status -r
or --no-commit-id --name-only -r
to list the added and changed files within a specific commit.
I just noticed today that this command does not print a result when applied to the very first commit!.
So why, and how to overcome it?
The reason is likely because the documentation states:
The first commit in a repository does not have a parent.
However, you can specify
--root
for that commit:Note that if you're building some kind of script or application that outputs these things you will have to detect that it is the first commit, as adding
--root
elsewhere will not be what you want.So while this yields no output:
This should compare the first commit against an empty tree: