如何处理 svn 属性(外部文件、可执行文件)以提交到单独的存储库

发布于 2024-10-31 17:41:49 字数 438 浏览 1 评论 0原文

我对 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

沩ん囻菔务 2024-11-07 17:41:49

如果您有权访问 old_svn_servernew_svn_server,则可以使用 svnadmin dump 将完整的历史记录写入临时文件,将该文件传输到 new_svn_server 的计算机,然后执行svnadmin load 将历史记录推送到 < code>new_svn_server:

old_svn_server 上:

svnadmin dump /path/to/oldrepo/tags/sw_version1 > dumpfile

然后,获取 dumpfile 并将其放在 new_svn_server 上,然后

svnadmin load /path/to/newrepo < dumpfile

If you have access to old_svn_server and new_svn_server, you could use svnadmin dump to write out the complete history to a temporary file, transfer that file to the machine of new_svn_server and then do an svnadmin load to push the history into new_svn_server:

On old_svn_server:

svnadmin dump /path/to/oldrepo/tags/sw_version1 > dumpfile

Then, fetch dumpfile and put it on new_svn_server and then

svnadmin load /path/to/newrepo < dumpfile
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文