1.git reset --hard “某次提交的id” (可用git log查看提交日志) 2.强推到分支:git push origin master --force 3.然后发现会失败,这是因为git分支的保护,我们可暂时去掉保护强推上去后,在设置回来 4.再次尝试,成功!