仅检查目录结构
如何在 CVS 存储库中仅检出项目的目录结构(没有任何文件)? 这可能很有用,例如了解结构本身,并稍后有选择地检出文件夹。 我可能对测试用例文件夹不感兴趣,因为它可能会占用我本地硬盘上太多的空间。
How can I checkout only the directory structure of a project (without any files) in a CVS repository? This could be useful, e.g. to know the structure itself, and selectively checkout the folders later. I might not be interested in, say, the test cases folder which might take too much space on my local hard disk.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您只想了解结构本身,可以使用 cvs rls -R 来递归列出存储库的内容。 从这个输出中,您可以过滤掉文件并获取目录层次结构。
If you want only to know the structure itself, you can use
cvs rls -R
which lists recursively contents of the repository. From this output, you can filter out files and get directory hierarchy.添加有用的东西可能不是您寻求的解决方案。 :) TortoiseCVS 可以在不检查文件的情况下显示结构。
Adding a useful thing, might not the solution you seek. :) TortoiseCVS can show the structure without checking out the files.