git rebase -i, 修改提交信息,将多个提交合并

example:

git rebase -i HEAD~4:

pick 07c5abd 1.txt
pick de9b1eb 2.txt
pick 3e7ee36 3.txt
pick fa20af3 4.txt

# Rebase 8db7e8b..fa20af3 onto 8db7e8b
#
# Commands:
#  p, pick = use commit
#  r, reword = use commit, but edit the commit message
#  e, edit = use commit, but stop for amending
#  s, squash = use commit, but meld into previous commit
#  f, fixup = like "squash", but discard this commit's log message
#  x, exec = run command (the rest of the line) using shell
#
# These lines can be re-ordered; they are executed from top to bottom.
#
# If you remove a line here THAT COMMIT WILL BE LOST.
#
# However, if you remove everything, the rebase will be aborted.
#
# Note that empty commits are commented out

如果选 pick, 则git不会有任何改动。
如果改成:

pick 07c5abd 1.txt
pick de9b1eb 2.txt
reword 3e7ee36 3.txt
pick fa20af3 4.txt

则git 会接着跳出一个界面允许你编辑 3.txt 这条comment信息。

如果改成:

pick 07c5abd 1.txt
squash  de9b1eb 2.txt
squash 3e7ee36 3.txt
squash fa20af3 4.txt

则 git 会将这四条 commit 信息合并成一个 commit 信息。

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值