How to list all the files in a commit?

后端 未结 30 2294
一个人的身影
一个人的身影 2020-11-22 01:50

I am looking for a simple git command that provides a nicely formatted list of all files that were part of the commit given by a hash (SHA1), with no extraneous

30条回答
  •  清酒与你
    2020-11-22 02:38

    Use simple one line command, if you just want the list of files changed in the last commit:

    git diff HEAD~1 --name-only
    

提交回复
热议问题