3 回答
TA贡献1880条经验 获得超4个赞
git reflog是你的朋友。在该列表中找到要提交的提交,然后可以将其重置(例如:)git reset --hard e870e41。
(如果您不提交更
TA贡献1831条经验 获得超9个赞
首先:是什么HEAD
?
HEAD
只是对当前分支中当前提交(最新)的引用。任何给定时间
只能有1个HEAD
。
如果您不在最新的提交上,这意味着它HEAD
指向历史记录中的先前提交,则称为分离的HEAD。
几种选择:
git checkout
git checkout <commit_id>
git reflog
您可以随时使用reflog,以及
git reflog
git 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 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
这将签出一个指向所需提交的新分支
这是可以完成的一般方案。
TA贡献1863条经验 获得超2个赞
获取已删除提交的另一种方法是使用git fsck命令。
git fsck --lost-found
这将输出类似于最后一行的内容:
dangling commit xyz
我们可以使用reflog其他答案中的建议来检查它是否是相同的提交。现在我们可以做一个git merge
git merge xyz
注:
我们不能让犯回来fsck,如果我们已经运行一个git gc命令,它会删除提及悬挂承诺。
- 3 回答
- 0 关注
- 702 浏览
添加回答
举报