没有分支的svn存储库检出

时间:2013-12-16 12:17:37

标签: svn version-control

我必须检查一个有8个分支的存储库,我不会下载每个分支大小~400MB。只需要检查文件夹结构和主干。

repo/trunk
repo/tags/<do not download content of this directory>
repo/branches/<do not download content of this directory>

有什么想法吗?首选命令行。

1 个答案:

答案 0 :(得分:10)

您想要使用Subversion的sparse directories功能。

svn co --depth immediates URL_TO_REPOSITORY PATH_TO_WORKING_COPY
svn update --set-depth infinity PATH_TO_WORKING_COPY/trunk

或者,如果您根本不打算使用标签或分支,只需查看trunk目录。