如何备份我的托管 SVN 存储库?

发布于 2024-11-30 16:58:42 字数 1459 浏览 0 评论 0原文

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

ゞ记忆︶ㄣ 2024-12-07 16:58:42

从 Subversion 1.4 开始,有一个名为 svnsync 的工具来将一个完整的存储库镜像到另一个存储库中。这样,您可以保留本地备份:

svnsync init file:⁄⁄⁄backup/directory svn://svn.example.com/remote/repo
svnsync sync svn://svn.example.com/remote/repo

作为替代方案,您可以切换到分布式 VCS就像 GIT 或 Bazaar,存储库的所有成员都保留其本地副本。

As of Subversion 1.4, there's a tool called svnsync to mirror one complete repository into another. That way, you may keep a local backup:

svnsync init file:⁄⁄⁄backup/directory svn://svn.example.com/remote/repo
svnsync sync svn://svn.example.com/remote/repo

As an alternative, you could switch to a Distributed VCS like GIT or Bazaar, where all members of a repository keep their local copy.

萌酱 2024-12-07 16:58:42

这并不太难。您可以编写自己的脚本来获取整个代码并将其复制到某个地方。然后使用操作系统服务(例如Windows任务计划程序)定期运行它。

It is not too much hard. You can write your own script to get the entire code and copy that somewhere. Then use an operating system service (e.g. Windows Task Scheduler) to run it periodically.

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