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 存储库中执行 bzr 分支时,出现内存不足错误。svn 存储库非常大。有没有办法给 bzr 更多的内存?
尝试以小步骤进行分支。即,如果您的 svn 存储库中有 1000 个修订版,请尝试按 100 个左右的修订版进行分支。即第一步
bzr branch URL/to/svn/repo -r100
然后将 revno 增加 100
bzr pull -r200 bzr pull -r300
等等。