我如何打印一份包含所有提交文件的简单列表?

尽管下面列出了这些文件,但它也包含了每个文件不需要的差异信息:

git show a303aa90779efdd2f6b9d90693e2cbbbe4613c1d

当前回答

列出提交树中的所有文件:

git ls-tree --name-only --full-tree a21e610

其他回答

Use

git log --name-status

这将显示提交id、消息、更改的文件以及是否修改、创建、添加或删除。有点像是一个万能的命令。

我使用此命令在合并提交中获取已更改文件的列表

λ git log -m -1 --name-only --pretty="format:"
configs/anotherconfig.xml
configs/configsInRepo.xml

or

λ git log -m -1 --name-status --pretty="format:"
A       configs/anotherconfig.xml
M       configs/configsInRepo.xml

我经常使用更改后的别名。要设置它,请执行以下操作:

git config --global alias.changed 'show --pretty="format:" --name-only'

然后:

git changed (lists files modified in last commit)
git changed bAda55 (lists files modified in this commit)
git changed bAda55..ff0021 (lists files modified between those commits)

可能有用的类似命令:

git log --name-status --oneline (very similar, but shows what actually happened M/C/D)
git show --name-only
$ git log 88ee8^..88ee8 --name-only --pretty="format:"

我只是假设gitk不适合这样做。在这种情况下,请尝试git show--name only<sha>。