怎么rebase你的commit?

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了怎么rebase你的commit?相关的知识,希望对你有一定的参考价值。

参考技术A 第一步:git log 看一下有多少commit

第二步:git rebase -i HEAD~12(改成自己的commit的次数,这里我是推了12次)
把想要删除的commit备注的前面的“pick”都改成“f”

第三步:git commit --amend
修改最近一次commit的备注

第四步:git push origin-liuhui add_changes_when_update_account --force (强推)

以上是关于怎么rebase你的commit?的主要内容,如果未能解决你的问题,请参考以下文章

git commit前必须rebase吗

gitgit rebase 合并几个commit

git rebase

Git详解——不喜欢 merge 的分叉?用 rebase

git rebase详解

git中merge和rebase的区别