1、首先通过git log查看commit信息 2、使用命令git commit --amend进入命令命令模式,按i进入编辑模式,修改好commit信息后按Esc键退出编辑模式,然后输入:wq保存编辑信息(注意使用英文输入法) 3、使用git push --force推送到远程仓库 注意:必须加上--force。否则会报错error:failed to push some refs to'xxx.git'
git commit --amend
i
:wq
git push --force
--force
error:failed to push some refs to'xxx.git'