markdown 撤消提交,重写历史记录

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了markdown 撤消提交,重写历史记录相关的知识,希望对你有一定的参考价值。

If you want to remove the commit altogether (and every commit that came after that)
```
git reset --hard adca297de~ //(assuming the commit's hash is adca297de). 
git push origin -f
```

以上是关于markdown 撤消提交,重写历史记录的主要内容,如果未能解决你的问题,请参考以下文章

markdown Git删除我们的所有提交历史记录

markdown GitHub - 使用git命令删除提交历史记录

markdown 在git中撤消,修复或删除提交

如何“取消还原”已还原的 Git 提交?

git revert 回到某个提交而不更改历史记录并创建一个新的提交,如 git revert

完全撤消提交并推送到远程[重复]