码迷,mamicode.com
首页 > 其他好文 > 详细

git切换分支导致代码丢失

时间:2020-04-30 21:24:14      阅读:176      评论:0      收藏:0      [点我收藏+]

标签:解决   合并   图片   删除   提交   创建   ranch   http   code   

切换分支代码导致丢失

解决办法:

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分支
完成

git切换分支导致代码丢失

标签:解决   合并   图片   删除   提交   创建   ranch   http   code   

原文地址:https://www.cnblogs.com/cjh1996/p/12811082.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!