简体   繁体   中英

Resume failed svnrdump dump | svnadmin load

I tried to clone a remote svn repo like this:

svnadmin create /root/repo/
svnrdump dump svn://myserver | svnadmin load /root/repo/

But it failed with:

svnadmin: E140001: Sum of subblock sizes larger than total block content length
* adding path : [snip] ...svnrdump: E210008: Error while replaying commit

That doesn't look like a very meaningful error message. Is there some way I can just resume the dump/load operation?

You need to include --incremental something like

svnrdump dump svn://server/ --incremental -r REV:HEAD | svnadmin load /root/repo/

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM