bzr-svn out of memory error

1.6k Views Asked by At

When I try to do a bzr branch from my svn repository I get an out of memory error. The svn repository is very large. Is there a way to give bzr more memory?

1

There are 1 best solutions below

5
On BEST ANSWER

Try to branch in small steps. I.e. if you have 1000 revisions in your svn repo, try to branch by 100 revisions or so. I.e. first step

bzr branch URL/to/svn/repo -r100

Then increment revno by the 100

bzr pull -r200
bzr pull -r300

and so on.