标签:解决 合并 图片 删除 提交 创建 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分支
完成
标签:解决 合并 图片 删除 提交 创建 ranch http code
原文地址:https://www.cnblogs.com/cjh1996/p/12811082.html