改变历史commit注释-git
现在对历史提交信息需要修改
1 | git log |
目前的记录为
1 | commit bee8dd7a91683577a290ccdbc1da4142153b0713 (HEAD -> ros2) |
需要把第二次提交的提交内容信息从convert to rolling
修改为convert assets_writer to rolling
操作步骤
1 | git rebase -i HEAD~2 |
此时会跳出来一个页面
1 | pick 4014d48 convert convert to rolling |
此时需要修改第一行的pick为edit,保存退出。
弹出信息为
1 | 停止在 4b5036b... convert to rolling |
因为我们没有任何的更改,只需要修改commit注释信息,因此直接
1 | git commit --amend |
修改一下commit消息记录,保存退出
最后
1 | git rebase --continue |
再一次查看git log
1 | commit de39d6590f56cf7f55bcdf678ad3c6bad31d855c (HEAD -> ros2) |
Comments