赞
踩
注意:该方法比较简单,前提是该分支最好是你自己在使用,并且设置了可以强制执行本地代码覆盖远程代码。
1、查看提交历史,找到要合并的最早的commitID
git log
2、回到最早commit,且将后面commit提交的内容状态改为未提交
git reset commitID
3、 提交修改的内容
- git add .
- git commit -m "多个commit合并为一个"
4、强制执行本地代码覆盖远程代码
git push -f origin 你的分支名
下面这个博客已经写得十分详细了,我在这里就不多费力气了
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。