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

首先,得到“你的分支领先于原点/master 3次提交”,然后我的应用程序已经恢复到较早的时间与较早的更改。

我怎么才能把过去11个小时所做的事情拿回来呢?

230255 次浏览

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

(如果您没有提交更改……你可能会遇到麻烦——早点承诺,经常承诺!)

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

git fsck --lost-found

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

dangling commit xyz

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

git merge xyz
< p > 注意: < br > 如果已经运行了git gc命令,将删除对悬空提交的引用,则无法使用fsck返回提交。< / p >

在回答之前,让我们添加一些背景,解释HEAD是什么。

< >强First of all what is HEAD? < / >强

HEAD只是当前分支上当前提交(最新)的引用。
在任何给定时间只能有一个HEAD(不包括git worktree)

HEAD的内容存储在.git/HEAD中,它包含当前提交的40字节SHA-1。


< >强detached HEAD < / >强

如果你不在最近一次提交上——这意味着HEAD指向历史上的前一次提交,它被称为< >强detached HEAD < / >强

Enter image description here

在命令行中,它看起来像这样- SHA-1而不是分支名称,因为HEAD并不指向当前分支的顶端:

Enter image description here

Enter image description here


关于如何从分离的HEAD中恢复的一些选项:


git checkout

git checkout <commit_id>
git checkout -b <new branch> <commit_id>
git checkout HEAD~X // x is the number of commits t go back

这将检出指向所需提交的新分支。
该命令将检出到给定的提交。
在这一点上,你可以创建一个分支,并从这里开始工作

# Checkout a given commit.
# Doing so will result in a `detached HEAD` which mean that the `HEAD`
# is not pointing to the latest so you will need to checkout branch
# in order to be able to update the code.
git checkout <commit-id>


# Create a new branch forked to the given commit
git checkout -b <branch name>

git reflog

你也可以总是使用reflog
git reflog 将显示更新了HEAD的任何更改,检出所需的reflog条目将把HEAD设置回此提交

每次HEAD被修改时,reflog中都会有一个新条目

git reflog
git checkout HEAD@{...}

这将使您回到期望的提交

Enter image description here


git reset --hard <commit_id>

“Move"你的头回到你想要提交的地方。

# 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 revert <sha-1>

< p >“Undo"给定的提交或提交范围。
reset命令将“撤销”;在给定提交中所做的任何更改。
带有撤销补丁的新提交将被提交,而原始提交也将保留在历史记录中
# Add a new commit with the undo of the original one.
# The <sha-1> can be any commit(s) or commit range
git revert <sha-1>

这个模式说明了哪个命令做什么。
正如你在这里看到的,reset && checkout修改了HEAD.

. 0

Enter image description here

< p >试试这个, 这将显示在

段时间内记录在git中的所有提交
git reflog

找到你想要的承诺

git log HEAD@{3}

git log -p HEAD@{3}

然后看看它是否正确:

git checkout HEAD@{3}

这将为该提交创建一个独立的头部。如果需要,添加并提交任何更改

git status
git add
git commit -m "temp_work"

现在,如果想要恢复提交回一个分支,比如master,你需要将这个分支交换机命名为master,然后合并为master。

git branch temp
git checkout master
git merge temp
这里还有一个Git教程网站上专门用于reflog的链接: Atlassian Git教程 < / p >

可悲的是git是如此不可靠:( 我刚刚失去了2天的工作:(

最好在提交之前手动备份任何东西。我刚刚做了“承诺”。git什么都没说就把我的改动都毁了。

我吸取了教训——下次要先备份,然后再提交。任何事都不要相信乞丐。

今天我就遇到了这样的事,所以我写下了我的救命稻草。我的回答和@Amber的回答很相似。

首先,我执行git reflog并搜索该特定提交的哈希,然后复制该哈希并从该分支执行git cherry-pick <hash>。这为我当前的分支带来了所有的变化,并恢复了我对GIT的信心。

祝你有愉快的一天!

如果你不能用git reflog找到你的commit,并且碰巧你在使用IntelliJ IDE,你可以right click on your project root folder -> Local History -> Show History并从那里恢复你的更改。

我用git push -f搞砸了git rebase,这真的救了我,因为提交是从本地和远程存储库中删除的。

希望这能帮到别人

干杯

最安全的方法是

  1. 查找要恢复的状态的提交头号

git refloggit reflog | grep your_phrase

  1. 创建新的分支

git checkout -b your-branch HEAD@{<your-number>}

首先,使用git reflog列出你所有的提交,包括丢失的提交

git reflog

然后使用git log HEAD@{your_commit_number}找到你正在寻找的提交。如

git log HEAD@{17}

在你用git Checkout HEAD@{your_commit_number}找到它后签入提交

git checkout HEAD@{17}

您可能需要添加并提交更改

git add .
git commit -m"quuck_fix"

然后,您必须创建一个临时分支来将提交恢复到您的分支

git branch temp

最后,您将签入现有的分支,然后合并临时分支。

#git checkout <your_existing_branch> e.g


git checkout main
git merge temp