重命名所有 svn:externals 的服务器 url 的快速方法?
我意识到从 SVN 1.5 开始,您可以使用外部的相对路径,但是对于那些不使用此选项的人来说,是否有一个快速的解决方案可以递归地修改所有外部?
我们最近将存储库移至新服务器,并且需要将它们指向的 URL 中的所有服务器名称重命名为新服务器名称。我可以手动执行此操作,但这已经非常乏味,因为我们有一个非常大的存储库。
I realize that as of SVN 1.5 you are able to use relative paths for externals, but is there a quick solution to modify all externals recursively for those who did not utilize this option?
We recently moved our repository over to a new server, and we need to rename all the server names in the URLs that they point to to the new server name. I can do this manually but it's already very tedious, as we have a very large repository.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为没有简单的方法可以做到这一点,但是使用命令行客户端,您可以编写一个脚本来节省一些手动工作。像这样的事情:
检查 文档subversion 命令行客户端 了解详细信息。
I see no easy way of doing it, but using the command line client you could write a script to save a little bit of manual work. Something like this:
Check the documentation for the subversion command line client for details.