我们使用Git进行回购。我不知道我的团队的最新历史是如何结束的:
0 master
\
1-2-3-4-5-6-7 branch1 & branch2
请注意(谢天谢地)没有人将此与我们的主分支合并。现在,我想把它分成这样结束:
5-6-7 branch2
/ \
0 - - - (*) - - (*) master
\ /
1-2-3-4 branch1
我没有Git经验,我想知道如何实现这一目标
答案 0 :(得分:1)
假设branch1
和branch2
都指向7,则更安全的选项是创建另一个分支n_branch1
并执行以下操作:
git checkout <sha_4>
# you'll now be in a detached head
git checkout -b n_branch1
# Now go to master and merge n_branch1
git checkout master
git merge n_branch1
# Once branch1 commits are merged, apply branch2 on top of them.
git checkout branch2
git rebase master
注意:您还可以通过将branch1
还原为4来重复使用{{1}}。(请参阅here)。