git pull出错后撤销命令,回退到之前的某个版本
2024-02-18 本文已影响0人
Rinaloving
操作
1. 查看分支
git branch
image.png
2. 查看历史版本
git reflog
image.png
3.选择要回退到的版本
git reset --hard 6347b0f
image.png
操作
git branch
image.png
git reflog
image.png
git reset --hard 6347b0f
image.png