如何快速重新设置一棵树的父级,如果这是原始结构:
A-B-C-D-E-F
我想将其更改为:
D-E-F
(甚至A-D-E-F
可以(
我尝试了这个答案中的建议与拼接图,但它失败并出现错误splice map revision <hash> is not being converted, ignoring'
它还打印出abort: no node!
任何帮助将不胜感激。谢谢。
我会使用histedit
扩展来做到这一点:
首先,让我们使用所需的结构创建一个测试存储库:
hg init
echo "a" > file
hg ci -m "a"
echo "b" >> file
hg ci -m "b"
echo "c" >> file
hg ci -m "c"
echo "d" >> file
hg ci -m "d"
echo "e" >> file
hg ci -m "e"
echo "f" >> file
hg ci -m "f"
然后,执行hg histedit
,并在编辑器中输入以下选项:
pick e4c09693d7a6 0 a
r 380d6d1ef006 1 b
r 33131e82bb1b 2 c
r pick 9325fb48b48e 3 d
pick 844ebb0b3844 4 e
pick bc85bc9ade8f 5 f
这将在存储库中只剩下三个提交。
请注意,要使其正常工作,存储库中的提交阶段必须是草稿。您可能还需要激活 histedit 扩展,该扩展随 mercurial 一起提供。