Possible Duplicate:
Undoing a git reset --hard HEAD~1

I used the command line:

git reset --hard HEAD^

how can i redo it ?

link|improve this question
2  
You mean undo?? – manojlds Nov 1 '11 at 19:40
yes i mean undo, i used git reset --hard HEAD~1 and worked, thanks – Ramin Mousavi Nov 1 '11 at 19:51
feedback

closed as exact duplicate by Jay Conrod, Jeremy Heiler, CharlesB, Mark Longair, Graviton Nov 4 '11 at 4:29

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

1 Answer

If you want to go back to HEAD ( the previous ) you can do:

git reset --hard HEAD@{1}

Note that working directory changes and staged changes are lost after you do git reset --hard and you cannot get them back.

link|improve this answer
2  
Also: take a look at git reflog. – poke Nov 1 '11 at 19:50
thanks, very much – Ramin Mousavi Nov 1 '11 at 19:53
feedback

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