基于模式的选择性 SVN 结帐
我正在尝试部分签出一个大型 SVN 存储库,其中包含许多我不需要的文件:对象文件、.class
文件、声音和其他数据文件。这些文件可能出现在任何目录中。
我厌倦了在存储库浏览器中遍历所有子目录以查看是否需要递归或稀疏地检查它们。 SVN 是否提供了一种仅检出与(正则表达式、glob 或其他)模式匹配或不匹配的文件的方法?
I'm trying to partially checkout a large SVN repository that contain lots of files I don't need: object files, .class
files, sound and other data files. These files may occur in any directory.
I'm tired of going through all the subdirs in the repo browser to see whether I need to check them out recursively or sparsely. Does SVN offer a way to checkout only files that match or don't match a (regex, glob or other) pattern?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不直接在 svn 中,不。请参阅(您可以使用 Subversion 进行部分结帐吗?) 。
您必须在空深度进行签出,然后在您自己的脚本中更新与模式匹配的文件
Not directly in svn, no. See ( Can you do a partial checkout with Subversion? ).
You'd have to do a checkout at empty depth, then in your own script, update the files that match a pattern