我需要将我的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

谁来帮帮我!谢谢!

最佳答案

以我的经验,由于内存不足,快速导入/快速导出可能会失败。

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

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

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

关于git - BZR快速导出返回BZR : broken pipe,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/19012470/

10-13 09:16