我必须检查一个有8个分支的存储库,我不会下载每个分支大小~400MB。只需要检查文件夹结构和主干。
repo/trunk
repo/tags/<do not download content of this directory>
repo/branches/<do not download content of this directory>
有什么想法吗?首选命令行。
答案 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
目录。