https://blog.csdn.net/weixin_43981229/article/details/107965633?utm_medium=distribute.pc_relevant.none-task-blog-BlogCommendFromBaidu-3.control&depth_1-utm_source=distribute.pc_relevant.none-task-blog-BlogCommendFromBaidu-3.control
git删除已经push到远端的代码
git log 查看提交历史(退出Git log状态,按下英文状态的Q即可)
commit 后面那一长串就是版本号
然后
git reset --hard 版本号(可回退本地的修改,如果已经Push到远端,则需要
push到remote:
git push -f
)
即可退回到某次提交的版本