标签: git bazaar
我有一些Bazaar存储库和分支机构,我想将其导入git。
快速导出和快速导入效果很好:
bzr fast-export ../c | git fast-import
不幸的是,这根本不支持分支机构。我甚至尝试在运行fast-import之前更改当前分支,它仍在master中导入。
fast-import
master
如何导入我的Bazaar存储库并在git上保留相同的分支?
答案 0 :(得分:0)
阅读the doc更好:bzr fast-export ../c --git-branch=c | git fast-import
bzr fast-export ../c --git-branch=c | git fast-import