如何处理 svn 属性(外部文件、可执行文件)以提交到单独的存储库
我对 svn 还很陌生。以下是我的问题。
我在旧存储库 http://old_svn_server/tags/sw_version1 中有代码,它具有诸如一些属性外部引用、可执行文件等。我想创建一个新的存储库,比如说 http://new_svn_server/user,然后把那里的代码。
我应该如何以有效且正确的方式解决这个问题,例如继续使用相同的外部,保留可执行文件权限,以及其他(svn:special等)?
我正在考虑使用 svn 导出来获取干净的工作副本并提交到新存储库。然后,将属性一一设置。但这非常乏味且容易出错。
感谢您的任何建议。
I am quite new to svn. The following is my problem.
I have the code in the old repository http://old_svn_server/tags/sw_version1, which has the properties such as some external references, executables, etc. I want to create a new repository, let's say http://new_svn_server/user, and put the code there.
How should I work this out in an efficent and right way, like keep using the same externals, keep executables permission, and others (svn:special, etc.)?
I am thinking to use the svn export to get the clean workcopy and commit to the new repository. Then, set the properties one by one. But This is very tedious and error prone.
Thanks for any suggestions.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您有权访问
old_svn_server
和new_svn_server
,则可以使用svnadmin dump
将完整的历史记录写入临时文件,将该文件传输到new_svn_server
的计算机,然后执行svnadmin load
将历史记录推送到 < code>new_svn_server:在
old_svn_server
上:然后,获取
dumpfile
并将其放在new_svn_server
上,然后If you have access to
old_svn_server
andnew_svn_server
, you could usesvnadmin dump
to write out the complete history to a temporary file, transfer that file to the machine ofnew_svn_server
and then do ansvnadmin load
to push the history intonew_svn_server
:On
old_svn_server
:Then, fetch
dumpfile
and put it onnew_svn_server
and then