1.先让代码恢复到想要恢复的前一次提交记录
2.重新提交代码,覆盖端上的代码,就相当于撤销了push 的提交
1.使用git log找到commit的版本号;
git log
2.git reset --hard <版本号>,撤回到需要的版本;
2.git reset --hard <版本号>
3.git push 重新提交会报错;
3.git push
4.使用git push --force
git push --force