对于给定的提交,我可以列出所有受影响的文件:
$ git show --pretty="format:" --name-only <hash>
file1.cpp
file2.cpp
file3.cpp
但我所追求的是看到修改/删除/添加的标签,例如:
M file1.cpp
D file2.cpp
A file3.cpp
是否有可以执行此操作的格式? 谢谢 斯蒂芬
答案 0 :(得分:2)
git show --pretty="format:" --name-status <hash>