git切换分支导致代码丢失
切换分支代码导致丢失
解决办法:
1、执行·git reflog
可以看到提交记录
找到自己想要一次提交
git checkout e32dd10 //切换分支 git checkout -b temp //创建分支temp git checkout master //git merge temp 合并temp分支切换到master分支 git merge temp //合并temp分支 git branch -d temp //删除temp分支 完成
相关推荐
baolen 2020-08-15
炼金术士lee 2020-08-15
huangchunxia 2020-08-07
lljhi0 2020-07-21
huangchunxia 2020-07-08
zhangxing 2020-07-05
ArkShen 2020-07-05
nebulali 2020-07-05
formula 2020-11-12
huhongfei 2020-11-05
乾坤一碼農 2020-10-27
liumengyanysu 2020-10-22
E哥的aws认证攻略 2020-10-15
guying 2020-10-05
好脑筋不如烂笔头 2020-09-17
Equation 2020-08-09
Balmunc 2020-08-02