git修改历史提交记录的解决方法

1、git rebase -i HEAD~10 	//最近10条
2、在列出pick xx行,将需要修改的行前面的pick改为edit(vim按i键进入编辑模式)
3、git commit --amend	//进入编辑commit
4、git rebase --continue	//如果还有下一个修改,会提示再次输入git commit --amend进行下一个修改,修改后再执行git rebase --continue,直到完成
5、git push origin <branch_name> -f	  //一定要加上-f强制推送上去才可以。或者使用界面工具提交的话勾上force push即可

注意:window下是按ctrl+c退出编辑(linux下是esc建退出),然后按shift+:再输入wq保持退出
上一篇:Eclipse中的.project 和 .classpath文件的具体作用及maven工程classpath说明


下一篇:虚拟机安装失败,出现 “ setup failed to generate the ssl keys necessary to run vmware ” 错误