Git用另一个分支提交替换inbetween

时间:2015-08-18 14:11:11

标签: git git-branch git-merge branching-and-merging

想搬东西:

A--B--C--D--E--F--G--H   (master)
      \
       \
        L--M--N--O--P    (feature)

想要删除D-E-F提交并替换为L-M-N-O-P。最终的回购应该是

A--B--C--L--M--N--O--P--G--H  (master)

不幸的是,我的Git还不够强大,有什么帮助吗?

2 个答案:

答案 0 :(得分:2)

应该这样做:git rebase F master --onto feature

这告诉Git将F..master之间的提交移到feature。现在你的回购看起来像

A--B--C--D--E--F
       \
        \
         L--M--N--O--P          (feature)
                      \
                       \
                        G--H    (master)

然后只需git branch -d feature来清理旧feature分支,Git的垃圾回收将处理D--E--F

对于所有类型的更多细节和一些好的示例图表,请阅读rebase docs

答案 1 :(得分:0)

您的历史记录如下:

$ git log --oneline  --graph --all
* 3e680f3 H
* afd87a5 G
* 2583117 F
* 6f44661 E
* 37ba1cd D
| * 7c8d70f P
| * b953a6f O
| * 7e2f28e N
| * 95fc381 M
| * 7ca7fe9 L
|/
* c30b405 C
* 70fad86 B
* 18aedd7 A
* c32e786 Initial commit

合并feature分支

$ git me feature
Merge made by the 'recursive' strategy.
 l | 0
 m | 0
 n | 0
 o | 0
 p | 0
 5 files changed, 0 insertions(+), 0 deletions(-)
 create mode 100644 l
 create mode 100644 m
 create mode 100644 n
 create mode 100644 o
 create mode 100644 p

Interactively对你的主人进行改造,对我来说c32e786是初始提交的哈希:

$ git rebase -i  c32e786

您将看到一个文本编辑器,其中包含一系列提交。删除不需要的提交并根据需要重新排序其余的提交:

$ git log --oneline
ff6a364 H
4a9d73c G
7c8d70f P
b953a6f O
7e2f28e N
95fc381 M
7ca7fe9 L
c30b405 C
70fad86 B
18aedd7 A
c32e786 Initial commit