1. 查看文件提交记录
git log 文件路径
git log vue.config.js
commit 5cf622157099b53f196497f75d4d3b7dbed24c90 Author: *** Date: Fri Aug 6 10:34:37 2021 +0800 错误的提交 commit 8df1afc5b7d9fc0a747ca9cecf901b29647f8c3a Author: *** Date: Wed Aug 4 07:59:51 2021 +0000 错误提交前的正确提交【需恢复到此版本】
2. 将指定文件回退到指定版本
git reset 目标版本的commit编号 文件路径
git reset 8df1afc5b7d9fc0a747ca9cecf901b29647f8c3a vue.config.js
3. 撤销本地对指定文件的修改
git checkout – 文件路径
git checkout -- vue.config.js
4. 提交回退后的版本到本地仓库
git commit -m “将指定文件回退到指定版本”
git commit -m "恢复vue.config.js"
5. 提交到远程仓库
git push