使用git查找最近添加的文件


17

我想使用git获取最近添加的文件的列表。有什么明智的方法吗?

Answers:


25

git whatchanged --diff-filter=A 显示提交已添加文件的提交,以及它们添加的文件(最新的)。


git whatchanged有点过时了,您可以使用git log --diff-filter=A --stat或将其 git log --diff-filter=A --numstat --pretty='COMMIT: %H %cd'用于更具机器可读性的内容。
特里·布朗
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.