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

首先,得到“您的分支比原先/母版领先3次提交”,然后我的应用已还原到较早的时间,并进行了较早的更改。

我如何才能将最近11个小时的花费恢复原状?


翻翻过去那场雪
浏览 703回答 3
3回答

慕村225694

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

天涯尽头无女友

首先:是什么HEAD?HEAD只是对当前分支中当前提交(最新)的引用。任何给定时间只能有1个HEAD。如果您不在最新的提交上,这意味着它HEAD指向历史记录中的先前提交,则称为分离的HEAD。几种选择:git checkoutgit checkout <commit_id>git reflog您可以随时使用reflog,以及git refloggit checkout HEAD@{...}这将使您回到所需的提交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 stashgit reset --hard 0d1d7fc32git 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 checkoutgit checkout -b <new branch> <commit_id>git checkout HEAD~X // x is the number of commits to go back这将签出一个指向所需提交的新分支这是可以完成的一般方案。

小唯快跑啊

获取已删除提交的另一种方法是使用git fsck命令。git fsck --lost-found这将输出类似于最后一行的内容:dangling commit xyz我们可以使用reflog其他答案中的建议来检查它是否是相同的提交。现在我们可以做一个git mergegit merge xyz注:我们不能让犯回来fsck,如果我们已经运行一个git gc命令,它会删除提及悬挂承诺。
打开App,查看更多内容
随时随地看视频慕课网APP