我如何打印一份包含所有提交文件的简单列表?
尽管下面列出了这些文件,但它也包含了每个文件不需要的差异信息:
git show a303aa90779efdd2f6b9d90693e2cbbbe4613c1d
我如何打印一份包含所有提交文件的简单列表?
尽管下面列出了这些文件,但它也包含了每个文件不需要的差异信息:
git show a303aa90779efdd2f6b9d90693e2cbbbe4613c1d
当前回答
$ git log 88ee8^..88ee8 --name-only --pretty="format:"
其他回答
尝试此命令获取名称并更改行数
git show --stat <commit-hash>
仅显示文件名
git show --stat --name-only <commit-hash>
要获取最后一个提交哈希,请尝试以下命令:
git log -1
上次提交时显示文件名和文件状态修改、创建或删除:
git log -1 --oneline --name-status <commit-hash>
或所有人
git log
有关更高级的git日志信息,请阅读以下文章:
Git日志格式字符串备忘单git日志备忘单
如果要获取已更改文件的列表:
git diff-tree --no-commit-id --name-only -r <commit-ish>
如果要获取提交中所有文件的列表,可以使用
git ls-tree --name-only -r <commit-ish>
git show --name-only a303aa90779efdd2f6b9d90693e2cbbbe4613c1d
我经常使用更改后的别名。要设置它,请执行以下操作:
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 show --name-status --oneline <commit-hash>
这样我就能知道
刚刚修改了哪些文件(M)新添加的文件(A)删除了哪些文件(D)