5

我需要将我的 bzr 存储库导出到 git。为此,我正在尝试使用bzr fast-export --git-branch=mybranch --plain | git fast-import --force. bzr 开始运行但停止并返回错误:

15:11:58 Calculating the revisions to include ... 
15:11:58 Starting export of 8961 revisions ... 
15:12:17 1000/8961 commits exported at 3155/minute  
15:12:30 2000/8961 commits exported at 3718/minute  
15:13:12 3000/8961 commits exported at 2421/minute  
fatal: Path data/sql/patch-02-27.sql not in branch 
fast-import: dumping crash report to .git/fast_import_crash_4632
bzr: broken pipe

谁来帮帮我!谢谢!

4

1 回答 1

1

根据我的经验,快速导入/快速导出可能因内存不足而失败。

当存在大型二进制文件时,往往会发生这种情况。

长期以来,这一直是一个问题,但我记得上次检查(~2010 年 9 月)时,它看起来并没有得到解决。有一次,由于这个原因,我无法将我的带有历史记录的集市存储库迁移到 git。

我相信我以后可能会通过切换到 64 位发行版来做到这一点。

于 2013-09-25T22:59:18.247 回答