VisualSVN 存储库备份文件格式

发布于 2024-08-31 12:48:52 字数 92 浏览 3 评论 0原文

我正在运行一个脚本来备份存储库。基本上该脚本运行 svnadmin dump 命令。我需要选择哪种文件格式。如果存储库发生任何错误,我该如何恢复它?

谢谢

I am running a script to backup the repository. Basically the script runs svnadmin dump command. Which file format I need to choose. If anything wrong happen with the repository how can I restore it ?

Thanks

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

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

发布评论

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

评论(1

感受沵的脚步 2024-09-07 12:48:52

svnadmin dump 创建一个备份,该备份保证受较新版本的 svn 支持,并且可以使用 svnadmin load 加载到新存储库中。

svnadmin hotcopy 创建存储库的完整/精确副本,并且仅保证与完全相同版本的 svn 一起使用。较新版本的 svn 可能无法读取热副本。但优点是热复制速度更快,并且只需将热副本复制到要恢复的位置即可恢复。

我们在办公室使用热复制。

svnadmin dump creates a backup that is guaranteed to be supported by newer versions of svn and can be loaded with svnadmin load into a new repository.

svnadmin hotcopy creates a complete/exact copy of the repository and is only guaranteed to work with the exact same version of svn. Newer versions of svn may not be able to read the hotcopy. The advantage though is hotcopy is faster and can be restored simply by copying the hotcopy into place to restore.

We use hotcopy at our office.

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