执行如下的命令

1
git rebase -i commit号

将要删除的 commit 号的前缀 pick 改为 drop

查看记录是否已经删除

1
git log

最后通过如下命令将现在的状态推送到远程仓库即可

1
git push origin HEAD --force