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
等々。