I Give Up

After Git turned out to be a huge pain in the ass for a number of reasons, it finally corrupted my project. Lame. I’m done.

Comments

johnfn
23. Apr 2012 · 05:58 UTC
Don’t give up! Git stores all the states of the repository in the git reflog. Type ‘git reflog’ in and hit enter, then find a hash on the left that looks like a good place to continue from. Type git checkout ((HASH)) to see what’s at that hash (will update everything in your directory to that point in time), and git checkout master to go back if it’s not the right one and try another one. Eventually you can do git reset –hard ((HASH)) to fully revert your directory to that hash.
pythong
23. Apr 2012 · 06:45 UTC
that sucks but you still could enter it as a jam entry, provided you get git to work again (today)
Patacorow
23. Apr 2012 · 10:01 UTC
Sorry to hear that :s

Maybe you can get your stuff back and use something other than git?