今天项目中因没更新上一个版本,导致无法push代码到git出现各种坑,折磨了2个小时还是搞不定终于想到一个办法,先另存你修改的代码,回退到你本地提交的上个版本,更新完代码后再提交push到git就可以了
各种报错:
origin/master error: Your local changes to the following files would be o
No ref to fetch from origin - everything up to date.
具体操作:
- 查看版本号:
可以使用命令“git log”查看:
找到提交要回退的版本id - 使用“git reset --hard 目标版本号”命令将版本回退:
git reset --hard ced60463b0bc0ec3f1c01d2bc59d23cfd745d6f9
然后就搞掂了!