Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
简而言之,我想要这个:
git show --name-only <hash>
(如何列出提交中的所有文件?)
但我也想知道它是什么类型的更改,例如添加、删除、添加/删除 n 行,最好仍然在每个文件的一行上。
git diff-tree <hash> --stat --summary
--stat显示添加/删除的行数,同时--summary明确显示添加和删除的文件。
--stat
--summary