Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要迁移一些 svn repos:
来自:Linux 32 位,svn 1.6.11
至:Linux 64 位,svn 1.8.10
存储库正在使用 fsfs 文件系统 db。
迁移存储库的最佳方法是什么?我不介意在迁移期间有停机时间。从 32 位到 64 位有什么影响吗?
我可以在目标上安装 1.8.10 并直接迁移到该目标吗?还是我需要迁移到 1.6.11 并就地升级到 1.8.10?
最好的和最短的
svnadmin dump PATH/TO/REPO > dumpfile
svnadmin create PATH/TO/REPO
svnadmin load PATH/TO/REPO < dumpfile