0

如果这是原始结构,如何快速地在 mercurial 中重新生成一棵树:

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!

任何帮助将不胜感激。谢谢你。

4

1 回答 1

2

我会使用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

这将在 repo 中只留下三个提交。

请注意,要使其正常工作,您的存储库中的提交阶段必须是草稿。您可能还需要激活 mercurial 附带的 histedit 扩展。

于 2017-08-14T15:45:03.900 回答