How to recover commit from 'detached head state'?

前端 未结 2 1536
我在风中等你
我在风中等你 2021-02-18 14:45

I checked out another branch with updates then made a few changes, switched back to the main git and now the changes disappeared! Can I get them back? the terminal was basically

相关标签:
2条回答
  • 2021-02-18 15:48

    I had a similar problem. I found git reflog to be a life-saver. In case it helps illustrate it use, here's the output:

    e3191c5 HEAD@{0}: checkout: moving from ec31ccf0735240d0cdc5a44fd443039c3caa43f0 to master
    ec31ccf HEAD@{1}: commit: Added code and data for simulation.
    781b9ee HEAD@{2}: checkout: moving from 3bd804e635b913840c71b7f8a33665460580d45f to 781b
    3bd804e HEAD@{3}: checkout: moving from master to 3bd804
    

    My situation was a bit different in that I had made a commit while in a detached HEAD state starting from a very old commit.

    If I simply wanted to merge ec31ccf0735240d0cdc5a44fd443039c3caa43f0 (aka ec31ccf, which is where I had been) into master, I think git merge ec31ccf or git rebase ec31ccf might have worked. But this would be mostly merging ancient history in my case (with merge conflicts, etc.).

    Instead, I just wanted to recover what I'd done on ec31ccf, and git cherry-pick ec31ccf worked nicely.

    0 讨论(0)
  • 2021-02-18 15:51

    Assuming you're still on master:

    git merge 7c09e17
    

    should be enough. git is usually good about telling you the commit IDs, if you watch the terminal.

    0 讨论(0)
提交回复
热议问题