首頁 > 問答 > 主體
git show 66fdd31abfe81b21021160c820f9e7375c53d9ac:path/to/somedir
這條命令執行後會得到如下結果:
file1 file2 dir1/ dir2/
而我想要的結果是獲得 path/to/somedir/ 下的所有文件包括子目錄的文件
file1 file2 dir1/file1 dir2/file1 dir2/file2
有沒有這樣的一條命令?還是我要寫遞歸才行?
PHPz2017-04-21 11:18:30
你需要的是 git ls-files,先 git checkout 到特定的版本,然后 git ls-files。
git ls-files
git checkout