我有一个巨大的存储库,其中包含以下布局的许多子文件夹:
MainRepo
├── Folder1
├── Folder2
├── Folder3
├── Folder4
└── Folder5
我正在尝试从文件夹创建另一个仓库Folder1, Folder2 and Folder3
。
为此,我创建了要在转换中使用的文件映射,如下所示:
include Folder1
include Folder2
include Folder3
rename .
但是当我尝试使用以下方法转换存储库时:
hg convert --filemap filemap MainRepo/ NewRepo
我收到以下错误:
...
<rev> message
1136 Merge with default
abort: unable to convert merge commit since target parents do not merge cleanly (file Folder1/Project1.csproj, parents 65b9b85aa32c and 923b315f094c)
过去有没有人遇到过这种问题?如何摆脱这种错误?我试图关闭与默认合并的分支,但没有帮助。
另外,我在哪里可以找到有关如何清理存储库的资源?这个 repo 使用了很多命名的分支,它们非常混乱。