I deleted my active branch in GitX, and now I can't seem to get out of it in the terminal.

When I try to check out any other branch, it tells me I have unstashed changes -- but I can't stash them (I get "fatal: bad revision 'HEAD'").

I've tried to re-create the branch, but then I get "fatal: You are on a branch yet to be born"

And I've tried to merely check out the branch, but of course, since it's deleted, I can't.

How can I get un-stuck?

link|improve this question

71% accept rate
Have you tried a git reset --hard HEAD? That would delete all the unstashed changes, if I'm right. – larsmans Jan 18 at 20:09
Yes, I tried. Got: "fatal: ambiguous argument 'HEAD': unknown revision or path not in the working tree." – jawns317 Jan 18 at 20:11
feedback

1 Answer

git reset --hard [SHA of previous master commit]

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.