Subversion dumping last `n` revisions

拈花ヽ惹草 提交于 2020-01-03 11:32:49

问题


I'm trying to dump the last 500 revisions from an SVN repository (to reimport as new repo) using...

svnadmin dump /path/to/repos > dump.dmp -r2000:HEAD

But the dump doesn't seem to stop and the dump file is reaching 3gb in size (a full dump 1:HEAD is only 600mb)

What am I doing wrong here?!


回答1:


Try the following:

svnadmin dump -r2000:HEAD /path/to/repos > dump.dmp


来源:https://stackoverflow.com/questions/10106983/subversion-dumping-last-n-revisions

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!