多个commit合并成一个

1. git log 查看自己有多少个commit

2.git rebase -i head~num  

  num:就是需要合并的commit数量

3. 窗口中点击 i 进入编辑模式

  将pick 修改成s

  按esc :wq退出

  再次:wq退出

4. git commit --amend 

  修改commit 名称

5. git push mast -f 强制提交

posted @ 2024-05-31 18:01  stephen_hao  阅读(39)  评论(0编辑  收藏  举报