当前位置:  开发笔记 > 编程语言 > 正文

结合Git存储库的前两个提交?

如何解决《结合Git存储库的前两个提交?》经验,为你挑选了5个好方法。

假设您有一个包含三个提交A,BC的历史记录:

A-B-C

我想将两个提交AB组合到一个提交AB:

AB-C

我试过了

git rebase -i A

这打开了我的编辑器,其中包含以下内容:

pick e97a17b B
pick asd314f C

我改成这个

squash e97a17b B
pick asd314f C

然后Git 1.6.0.4说:

Cannot 'squash' without a previous commit

有办法还是不可能?



1> kostmo..:

使用git rebase -i --root 作为的Git 版本1.7.12.

在互动变基文件,改变提交的第二线压扁并保留其他线路的挑选:

pick f4202da A
squash bea708e B
pick a8c6abc C

这将把两个提交AB组合成一个提交AB.

发现在这个答案.



2> David Lichte..:

你试过:

git rebase -i A

如果你继续edit而不是squash:有可能这样开始:

edit e97a17b B
pick asd314f C

然后运行

git reset --soft HEAD^
git commit --amend
git rebase --continue

完成.


如果你这样做是为了安静地修复github要点,你必须在提交中添加-m"initial".;-)

3> CB Bailey..:

A是最初的提交,但现在你想B成为最初的提交.git提交是整个树,而不是差异,即使它们通常是根据它们引入的差异来描述和查看的.

即使A和B以及B和C之间有多个提交,此配方仍然有效.

# Go back to the last commit that we want
# to form the initial commit (detach HEAD)
git checkout 

# reset the branch pointer to the initial commit,
# but leaving the index and working tree intact.
git reset --soft 

# amend the initial tree using the tree from 'B'
git commit --amend

# temporarily tag this new initial commit
# (or you could remember the new commit sha1 manually)
git tag tmp

# go back to the original branch (assume master for this example)
git checkout master

# Replay all the commits after B onto the new initial commit
git rebase --onto tmp 

# remove the temporary tag
git tag -d tmp



4> Loki..:

在交互式rebase的情况下,您必须在A之前执行此操作,以便列表将是:

pick A
pick B
pick C

成为:

pick A
squash B
pick C

如果A是初始提交,则必须在A. Git考虑差异之前进行不同的初始提交,它将对(A和B)和(B和C)之间的差异起作用.因此壁球不适用于你的例子.



5> 小智..:

在这种情况下,你必须提交的数百或数千使用kostmo的答案的

git rebase -i --root

可能是不切实际和缓慢的,只是由于rebase脚本必须处理两次的大量提交,一次生成交互式rebase编辑器列表(您选择每次提交要采取的操作),以及一次实际执行重新提交提交.

这是一种替代解决方案,通过不首先使用交互式rebase来避免生成交互式rebase编辑器列表的时间成本.通过这种方式,它与Charles Bailey的解决方案类似.您只需从第二次提交创建一个孤立分支,然后在其上面重新定义所有后代提交:

git checkout --orphan orphan 
git commit -m "Enter a commit message for the new root commit"
git rebase --onto orphan  master

文档

git-checkout(1)手册页

git-rebase(1)手册页

推荐阅读
贴进你的心聆听你的世界
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有