git合并多个提交rebase使用

屏幕快照 2020-06-06 下午10.10.04.png

如图所示我们有时候在本地修修改改成多个提交,想合并成一个在推到远程的时候需要用到git rebase

testdeMBP:DEMO test$ git rebase -i HEAD~5

HEAD~5表示将最新的提交往后数几个提交合并,然后出现如下页面

pick 0f32607 其他: 第1次提交
pick 541c8fc 其他: 第2次提交
pick 06279bc 其他: 第3次提交
pick 714496d 其他: 第4次提交
pick 1a56b7f 其他: 第5次提交

# Rebase ed28fcf..1a56b7f onto ed28fcf (5 commands)
#
# Commands:
# p, pick  =保留该commit(缩写:p)
# r, reword  = 保留该commit,但我需要修改该commit的注释(缩写:r)
# e, edit  =但我要停下来修改该提交(不仅仅修改注释)(缩写:e)
# s, squash  = 将该commit和前一个commit合并(缩写:s)
# f, fixup  = 将该commit和前一个commit合并,但我不要保留该提交的注释信息(缩写:f)
# x, exec  = shell 执行shell命令(缩写:x)
# b, break = stop here (continue rebase later with 'git rebase --continue')
# d, drop  = 我要丢弃该commit(缩写:d)
# l, label 

根据说明我将在上面的信息修改成如下然后wq保存

pick 0f32607 其他: 第1次提交
s 541c8fc 其他: 第2次提交   
s 06279bc 其他: 第3次提交   
s 714496d 其他: 第4次提交   
s 1a56b7f 其他: 第5次提交 

上面的意思就是把第2次到第5次的提交都合并到第一次提交上
然后wq保存退出后是注释修改界面:

# This is a combination of 5 commits.
# This is the 1st commit message:

其他: 第1次提交

# This is the commit message #2:

其他: 第2次提交

# This is the commit message #3:

其他: 第3次提交

# This is the commit message #4:

其他: 第4次提交

# This is the commit message #5:

其他: 第5次提交

将合并的提交的log编辑成一行

# This is a combination of 5 commits.
# This is the 1st commit message:

其他: 第1次提交;第2次提交;第3次提交;第4次提交;第5次提交

# Please enter the commit message for your changes. Lines starting
# with '#' will be ignored, and an empty message aborts the commit.
#
# Date:      Sat Jun 6 22:07:17 2020 +0800
#
# interactive rebase in progress; onto ed28fcf
# Last commands done (5 commands done):
#    squash 714496d 其他: 第4次提交
#    squash 1a56b7f 其他: 第5次提交
# No commands remaining.
# You are currently rebasing branch 'dev' on 'ed28fcf'.
#
# Changes to be committed:
#       modified:   README.md
#

最终多个提交合并成了一个可以推到远端或者合并到其他分支去了


屏幕快照 2020-06-06 下午10.29.39.png

当然git rebase不只是合并提交,还可以丢弃提交更改提交信息等等,具体可以根据注释信息进行灵活更改

你可能感兴趣的:(git合并多个提交rebase使用)