从 Windows 上的 VisualSVN 迁移到基于 Linux 的 svn
我想将我的 svn 存储库从运行 Windows 和 VisualSVN 2.1.2 的本地计算机迁移到 webfaction (我的 Linux 托管解决方案)。
最初我尝试转储 svn:
svnadmin dump存储库路径> 转储文件名
并将其加载到 Linux 计算机上
svnadmin load dumpfile_name
我收到以下错误:
svnadmin:无法打开文件“dumpfile_path_and_name/format”:不是目录
我发现在我的 Windows 计算机上,存储库下确实有一个 format 文件夹。所以我将整个存储库复制到 Linux 机器并尝试:
svnadmin加载repository_copy路径
我收到以下错误:
svnadmin:预期的 FS 格式介于 “1”和“3”;找到格式“4”
我该怎么办?
I'd like to migrate my svn repository from my local computer running windows and VisualSVN 2.1.2 to an svn app on webfaction (my Linux hosting solution).
Initially I tried dumping the svn:
svnadmin dump path_to_repository > dumpfile_name
and loading it on the Linux machine
svnadmin load dumpfile_name
I received the following error:
svnadmin: Can't open file 'dumpfile_path_and_name/format': Not a directory
I found that on my Windows machine I do have a format folder under the repository. So I copied the entire repository to the Linux machine and tried:
svnadmin load path_to_repository_copy
I received the following error:
svnadmin: Expected FS format between
'1' and '3'; found format '4'
what should I do?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
svnadmin load 的语法应该是
svnadmin load /path/to/repository
svnadmin load /path/to/repository
svnadmin load /path/to/repository
转储文件
请参阅此处
The syntax for svnadmin load should be
svnadmin load /path/to/repository < dumpfile
See here
这是正确的。
您必须先
然后您可以
转储/加载周期的全部要点而不是直接复制文件是为了解决数据库版本差异。在这种情况下,您在 Windows 上的 svn 比您的 Linux 机器上的 svn 更新,因此 Linux 机器抱怨它不知道新格式 (4)。 (您的加载语法也是错误的,请参阅“svnadmin load --help”,但它首先遇到此错误。)
This is correct.
You must first
Then you can
The whole point of the dump/load cycle rather than copying files straight is to work around database version differences. In this case you have a newer svn on Windows than on your Linux box, so the Linux box complains it doesn't know about the new format (4). (Your load syntax is also wrong, see 'svnadmin load --help', but it hits this error first.)