使用 Git 1.7.0 中新的稀疏签出功能,是否可以像在 SVN 中那样获取子目录的内容?我找到了这个例子,但它保留了完整的目录结构。想象一下,我只想要“perl”目录的内容,而没有名为“perl”的实际目录。
- 编辑 -
例子:
我的 git 存储库包含以下路径
repo/.git/
repo/perl/
repo/perl/script1.pl
repo/perl/script2.pl
repo/images/
repo/images/image1.jpg
repo/images/image2.jpg
repo/doc/
repo/doc/readme.txt
repo/doc/help.txt
我想要的是能够从上面的存储库中生成这个布局:
repo/.git/
repo/script1.pl
repo/script2.pl
但是,使用当前的稀疏结帐功能,似乎只能获得
repo/.git/
repo/perl/script1.pl
repo/perl/script2.pl
这不是我想要的。