GIT-列出GIT中提交(或各种提交)的所有文件

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了GIT-列出GIT中提交(或各种提交)的所有文件相关的知识,希望对你有一定的参考价值。

Hash of the commit which you want to show a303aa90779efdd2f6b9d90693e2cbbbe4613c1d
  1. git show --pretty="format:" --name-only a303aa90779efdd2f6b9d90693e2cbbbe4613c1d
  2.  
  3. git show --pretty="format:" --name-only a303aa90779efdd2f6b9d90693e2cbbbe4613c1d | grep '.php$' // If you want to filter the result, only with condition files...
  4.  
  5. git show --pretty="format:" --name-only bc54bc02ff9ce087cb49db78011ac64384f47327 ad67f71575010e6645b71c57b56537612b454125 | sort -u // We show all the files of various commits
  6. without repeated files (sort -u)

以上是关于GIT-列出GIT中提交(或各种提交)的所有文件的主要内容,如果未能解决你的问题,请参考以下文章

Git:提交日期的批量更改

常用的git命令

在计算机上搜索所有未提交更改的 .git 文件夹

如何找到提交给 git 分支的文件列表?

列出两个日期之间对 master 分支的 git 提交

git-忽略已提交的文件或目录