search

Home  >  Q&A  >  body text

Git 如何列出某个版本下的某个文件夹下的所有文件包括子目录

git show 66fdd31abfe81b21021160c820f9e7375c53d9ac:path/to/somedir

这条命令执行后会得到如下结果:

file1
file2
dir1/
dir2/

而我想要的结果是获得 path/to/somedir/ 下的所有文件包括子目录的文件

file1
file2
dir1/file1
dir2/file1
dir2/file2

有没有这样的一条命令?还是我要写递归才行?

大家讲道理大家讲道理2801 days ago603

reply all(1)I'll reply

  • PHPz

    PHPz2017-04-21 11:18:30

    What you need is git ls-files,先 git checkout 到特定的版本,然后 git ls-files.

    reply
    0
  • Cancelreply