VisualSVN 存储库备份文件格式
我正在运行一个脚本来备份存储库。基本上该脚本运行 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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 withsvnadmin 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.