这为压缩多个提交提供了很好的解释:

http://git-scm.com/book/en/Git-Branching-Rebasing

但它不适用于已经推送的提交。如何在本地和远程回购中压缩最近的几次提交?

当我执行gitrebase-I origin/master ~4 master时,将第一个设置为pick,将其他三个设置为squash,然后退出(通过emacs中的c-x-c-c),我得到:

$ git rebase -i origin/master~4 master
# Not currently on any branch.
nothing to commit (working directory clean)

Could not apply 2f40e2c... Revert "issue 4427: bpf device permission change option added"
$ git rebase -i origin/master~4 master
Interactive rebase already started

其中2f40是选择提交。现在,4个提交都没有出现在git日志中。我希望我的编辑器重新启动,以便我可以输入一条提交消息。我做错了什么?


当前回答

通过只创建一个分支来处理而不处理主分支,可以避免许多问题:

git checkout-b mybranch

以下方法适用于已推送的远程提交以及远程推送提交/仅本地提交的混合:

# example merging 4 commits

git checkout mybranch
git rebase -i mybranch~4 mybranch

# at the interactive screen
# choose fixup for commit: 2 / 3 / 4

git push -u origin +mybranch

我也有一些请求笔记,这可能会有所帮助。

其他回答

git rebase-i大师

您将打开编辑器vm,并发送类似这样的消息

Pick 2994283490 commit msg1
f 7994283490 commit msg2
f 4654283490 commit msg3
f 5694283490 commit msg4
#Some message 
#
#some more

在这里,我将所有其他提交的pick改为“f”(表示修正)。

git push-f原始功能/功能分支名称xyz

这将把所有提交修复为一个提交,并删除所有其他提交。我这样做了,这对我有帮助。

通过只创建一个分支来处理而不处理主分支,可以避免许多问题:

git checkout-b mybranch

以下方法适用于已推送的远程提交以及远程推送提交/仅本地提交的混合:

# example merging 4 commits

git checkout mybranch
git rebase -i mybranch~4 mybranch

# at the interactive screen
# choose fixup for commit: 2 / 3 / 4

git push -u origin +mybranch

我也有一些请求笔记,这可能会有所帮助。

和接受的答案略有不同,但我很难理解,最终还是得到了答案。

$ git rebase -i HEAD~4

在打开的交互式屏幕上,用壁球替换pick在顶部显示所有要清除的提交。保存并关闭编辑器

按下遥控器,使用:

$ git push origin branch-name --force

在我的案例中,要求将所有的功能分支提交压缩为一个,以便有一个干净的提交历史。利用GitHub UI实现了这一点。

问题:

功能分支(例如:featureBranch)已从master(一个月前)创建。将所有更改提交给featureBranch(约12次提交,一个月的工作)。并被定期推到远程。

要求:

使用主功能更新功能分支,并在功能分支中进行一次提交

遵循的步骤:

在GitHub UI中从master创建一个新分支(例如:featureBranchLatest)。创建从featureBranch到featureBranchLatest的PR。解决冲突(如果有)。将PR与GitHub UI中的挤压提交选项合并。(更改提交消息以获得更干净的消息)。

现在,featureBranchLatest将具有一次提交所需的所有更改,以及来自主服务器的最新更改。如果不需要参考,请删除旧的分支功能分支。

在一个分支上,我可以这样做(最后4次提交)

git checkout my_branch
git reset --soft HEAD~4
git commit
git push --force origin my_branch