重写存储库主干中所有 svn:externals 的脚本/实用程序
假设有人希望将其存储库中的所有绝对 svn:externals URL 转换为相对 URL。
或者,如果留意 svn:externals 文档中的提示 (“您应该认真考虑使用显式修订号...”),人们可能会发现自己需要定期在整个存储库的许多地方提取外部的新修订。
以编程方式更新大量 svn:externals 属性的最佳方法是什么?
我的解决方案发布在下面。
Say that one wishes to convert all absolute svn:externals URLS to relative URLS throughout their repository.
Alternatively, if heeding the tip in the svn:externals docs ("You should seriously consider using explicit revision numbers..."), one might find themselves needing to periodically pull new revisions for externals in many places throughout the repository.
What's the best way to programmatically update a large number of svn:externals properties?
My solution is posted below.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是我的类,用于从 svn:externals 属性的单行中提取部分:
我使用 pysvn 库递归地迭代拥有 svn:externals 属性的所有目录,然后将该属性值拆分为换行符,并根据解析的
SvnExternalsLine
对每一行进行操作。该过程必须在存储库的本地签出上执行。下面介绍了如何使用
pysvn
(propget)检索外部:迭代该函数的返回值,并在修改每个目录的属性后,
Here's my class to extract parts from a single line of an svn:externals property:
I use the
pysvn
library to iterate recursively through all of the directories possessing the svn:externals property, then split that property value by newlines, and act upon each line according to the parsedSvnExternalsLine
.The process must be performed on a local checkout of the repository. Here's how
pysvn
(propget) can be used to retrieve the externals:Iterate through the return value of this function, and and after modifying the property on each directory,
kostmo 的实现(十多年前提供)不支持带有空格的固定修订号定义。例如,在下面的有效外部定义中:
“-r 1234”部分将被解析为本地路径,而不是修订规范。
我的实现如下,它解决了这个问题:
The kostmo's implementation (provided more than 10 years ago) does not support pinned revision number definitions with space. E.g. in the valid external definitions below:
the "-r 1234" part will be parsed as a local path, instead of a revision specification.
My implementation below, which fixes this issue: