借助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
这不是我想要的。