【发布时间】:2012-03-01 17:58:43
【问题描述】:
使用 git v1.7.1 我正在尝试同时使用 --preserve-merges 和 --onto 功能进行变基。最终结果似乎没有合并提交,因此看起来是线性的。我宁愿保留合并提交,原因与人们经常使用 --preserve-merges 的原因相同(更容易看到在逻辑上是独立功能并在其自己的分支中开发的提交组)。
我的主分支(rebase 的目的地)很无聊:
A-B-C
我要从中获取的功能分支具有已合并到其中的子功能分支。喜欢:
X - Y
/ \
V-W ------ Z
其中 Z 是合并提交,它是要从中获取的功能分支的头部,而 X 和 Y 位于子功能分支上。
我正在使用:git rebase --preserve-merges --onto C V Z
我想结束:
X - Y
/ \
A-B-C-W ------ Z
但我得到的是:
A-B-C-W-X-Y
由于 Z 是无冲突的合并,因此代码的最终状态是正确的,但历史并没有我想要的那样富有表现力。
有没有办法得到我想要的?
编辑地址@Bombe: 我编写了一个 bash 脚本来构建我的示例。在我的系统(带有 git 1.7.1 的 RHEL 6.2)上,这说明了我的问题。
#! /bin/bash
# start a new empty repo
git init
# make some commits on the master branch
git checkout master
touch A.txt; git add A.txt; git commit -m "add A.txt"; git tag Atag
touch B.txt; git add B.txt; git commit -m "add B.txt"; git tag Btag
touch C.txt; git add C.txt; git commit -m "add C.txt"; git tag Ctag
# now build the feature branch
# start at Btag (more or less arbitrary; point is it's before C)
git checkout Btag
git checkout -b feature
touch V.txt; git add V.txt; git commit -m "add V.txt"; git tag Vtag
touch W.txt; git add W.txt; git commit -m "add W.txt"; git tag Wtag
# now a subfeature
git checkout -b subfeature
touch X.txt; git add X.txt; git commit -m "add X.txt"; git tag Xtag
touch Y.txt; git add Y.txt; git commit -m "add Y.txt"; git tag Ytag
# merge the subfeature into the feature
# preserves branch history with --no-ff
git checkout feature
git merge --no-ff subfeature
# the merge commit is our Z
git tag Ztag
# one more commit so that merge isn't the tip (for better illustration of Z missing later)
touch postZ.txt; git add postZ.txt; git commit -m "add postZ.txt"; git tag postZtag
# now do the rebase
git rebase --preserve-merges --onto Ctag Vtag
# optionally move the master branch forward to the top of feature branch
git checkout master
git merge feature
在我得到变基之前:
X-Y
/ \
V-W-----Z-postZ
/
A-B-C
变基后我得到:
X-Y
/ \
V-W-----Z-postZ
/
A-B-C-W'-X'-Y'-postZ'
注意 Y' 和 postZ' 之间缺少 Z'。
【问题讨论】: