git show 66fdd31abfe81b21021160c820f9e7375c53d9ac:path/to/somedir
这条命令执行后会得到如下结果:
file1 file2 dir1/ dir2/
而我想要的结果是获得 path/to/somedir/ 下的所有文件包括子目录的文件
file1 file2 dir1/file1 dir2/file1 dir2/file2
有没有这样的一条命令?还是我要写递归才行?
光阴似箭催人老,日月如移越少年。
必要なものはgit ls-files,先 git checkout 到特定的版本,然后 git ls-filesです。
git ls-files
git checkout
必要なものは
git ls-files
,先git checkout
到特定的版本,然后git ls-files
です。