为了账号安全,请及时绑定邮箱和手机立即绑定

如何恢复在Git中丢失的提交?

如何恢复在Git中丢失的提交?

Git
翻翻过去那场雪 2019-11-05 15:01:44
首先,得到“您的分支比原先/母版领先3次提交”,然后我的应用已还原到较早的时间,并进行了较早的更改。我如何才能将最近11个小时的花费恢复原状?
查看完整描述

3 回答

?
慕村225694

TA贡献1880条经验 获得超4个赞

git reflog是你的朋友。在该列表中找到要提交的提交,然后可以将其重置(例如:)git reset --hard e870e41。


(如果您不提交更


查看完整回答
反对 回复 2019-11-05
?
天涯尽头无女友

TA贡献1831条经验 获得超9个赞

首先:是什么HEAD

HEAD只是对当前分支中当前提交(最新)的引用。任何给定时间
只能有1个HEAD

如果您不在最新的提交上,这意味着它HEAD指向历史记录中的先前提交,则称为分离的HEAD。

//img1.sycdn.imooc.com//5dc11e79000127c805250274.jpg

几种选择:


git checkout

git checkout <commit_id>

git reflog

您可以随时使用reflog,以及


git reflog

git checkout HEAD@{...}

这将使您回到所需的提交

//img1.sycdn.imooc.com//5dc11e83000147a404460267.jpg

git reset HEAD --hard <commit_id>

将您的头“移动”回所需的提交。


# This will destroy any local modifications.

# Don't do it if you have uncommitted work you want to keep.

git reset --hard 0d1d7fc32


# Alternatively, if there's work to keep:

git stash

git reset --hard 0d1d7fc32

git stash pop

# This saves the modifications, then reapplies that patch after resetting.

# You could get merge conflicts, if you've modified things which were

# changed since the commit you reset to.

注意:(从Git 2.7开始),

您也可以使用git rebase --no-autostash。

git checkout

git checkout -b <new branch> <commit_id>

git checkout HEAD~X // x is the number of commits to go back

这将签出一个指向所需提交的新分支


这是可以完成的一般方案。

//img1.sycdn.imooc.com//5dc11e8c0001090c13400586.jpg

查看完整回答
反对 回复 2019-11-05
?
小唯快跑啊

TA贡献1863条经验 获得超2个赞

获取已删除提交的另一种方法是使用git fsck命令。


git fsck --lost-found

这将输出类似于最后一行的内容:


dangling commit xyz

我们可以使用reflog其他答案中的建议来检查它是否是相同的提交。现在我们可以做一个git merge


git merge xyz

注:

我们不能让犯回来fsck,如果我们已经运行一个git gc命令,它会删除提及悬挂承诺。


查看完整回答
反对 回复 2019-11-05
  • 3 回答
  • 0 关注
  • 702 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信