赞
踩
git log
查看提交日志,找到要修改的commit
git rebase -i HEAD~n
1、切换到需要修改的 commit 中,n为commit的序号,如要修改最近一次 commit 的消息,则为 git rebase -i HEAD~1
2、按 i 进入编辑模式
3、修改 pick 为 edit,按 ESC 退出编辑模式,再输入 :wq 保存并退出VIM
git commit --amend
按 i 进入编辑模式,修改需要修改的内容,按 ESC 退出编辑模式,再输入 :wq 保存并退出VIM
git rebase --continue
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。