你可能需要像ConvertExtension这样的东西。查看--splicemap
选项。
要使用添加为第一个修订版的 .hgignore 文件创建新历史记录:
- 创建一个新的存储库,其唯一的修订是 .hgignore 提交。
- 创建一个包含两个 40 字符哈希的 splicemap 文件:当前数据库的 rev 0 和新数据库的 rev 0。
- 跑
hg convert <current_db_dir> <new_db_dir> --splicemap splice_filename
这会将当前数据库中的每个修订添加到新数据库中。splicemap 指定编辑父级,因此如果当前数据库的修订版 0 将其父级设置为新数据库的修订版 0。
下面是一个 Windows 批处理文件,它创建了一个 3-revision 数据库和一个 1-revision 数据库,其中包含一个 .hgignore 文件,将它们拼接在一起。结果应该是您正在寻找的。如果您有一个大型原始数据库,则可能需要一段时间,因为源数据库的整个历史记录都会重新写入目标数据库。
@echo off
@REM Create a 3-revision database
hg init current
cd current
echo >file1
hg add
hg ci -m file1
echo >file2
hg add
hg ci -m file2
echo >file3
hg add
hg ci -m file3
@REM Add the first revision to the splice map
hg log -r 0 --template "{node} " > ..\map
@REM Display the result
hg log
cd ..
@REM Create a 1-revision database
hg init ignore
cd ignore
echo glob:*.txt>.hgignore
hg add
hg ci -m ignore
@REM Specify this node as the parent of the other
@REM database's first revision in the splice map
hg log -r 0 --template "{node}\n" >> ..\map
hg log
cd ..
@REM Here's the resulting splice map
type map
@REM Make a copy to store the result
hg clone ignore result
@REM Add revisions from "current" to "result" honoring
@REM the splice map
hg convert current result --splicemap map
@REM Display the result
cd result
hg log