How do I recover my code?
I did the following two commands:
git log -all -p
git reflog
I see my code is there. However, I'm not sure how to recover them.
Here's what the reflog shows:
23f50a6 HEAD@{0}: checkout: moving from filling-in-layout to master
39bdf8c HEAD@{1}: commit: Finished layout and routes
2ca279b HEAD@{2}: commit: Removed default Rails page
23f50a6 HEAD@{3}: checkout: moving from master to filling-in-layout
23f50a6 HEAD@{4}: merge static-pages: Fast-forward
436aabd HEAD@{5}: checkout: moving from static-pages to master
23f50a6 HEAD@{6}: commit: Done with static pages
c11e8b0 HEAD@{7}: commit: Added a Pages controller
436aabd HEAD@{8}: checkout: moving from master to static-pages
436aabd HEAD@{9}: commit: Improved the README and .Gitignore
a1d135d HEAD@{10}: commit (initial): Initial commit v.3
After I did the checkout as shown in HEAD@{0}, all my code was deleted and reverted back to HEAD@{9} status. I'm such a noob at this, and I'm learning RoR with Hartl's Tutorial. But, following his advice, all the work I've done in the past 5 hours is gone. They should be in the HEAD@{1} commit. Ahh..i have no clue what I'm talking about. Please help :/
Any help will be much appreciated!
git reset --hard, it will return you to the latest commit back. – Sergey Kishenin Mar 18 '11 at 3:28