git View the files modified by a commit

git show commit_id --raw

If no commit_id is specified, the file modified by the latest commit will be displayed by default

If git log also wants to see the files modified each time commoit

git log --stat

diff can also use this parameter

git diff commit1   commit2  --stat

Guess you like

Origin blog.csdn.net/weixin_40557160/article/details/129521859