Bzr-svn error from memory

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

+4
source share
1 answer

Try to break out in small steps. That is, if you have 1000 changes in your svn registry, try deploying to 100 versions or so. That is the first step

bzr branch URL/to/svn/repo -r100 

Then add revno to 100

 bzr pull -r200 bzr pull -r300 

etc.

+5
source

All Articles