Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Git recover uncommitted changes

Tags:

git

recover

I had a lot of local changes.

I just accidentally did

git merge another_branch
git reset --hard HEAD^

on a lot of work. :( with the intention I didn't want the merged changes in here.

How do I recover the original state?

No, the local changes were never committed/stashed.

No way?

like image 264
lprsd Avatar asked Jul 13 '10 18:07

lprsd


2 Answers

Foy anyone who is facing this problem in ide's, there is a solution. Search For the ide editor history files of your ide. I had a problem with android studio so here i will give you a solution for android studio.

For eg: In android studio you can always see the previous files , by right clicking on project folder->LOcal History->Show History.

You can see the change history of files and you can also open the files and compare it with new files side by side. If you need old code just copy paste it from there.

like image 51
Nabil Mohammed Nalakath Avatar answered Sep 22 '22 08:09

Nabil Mohammed Nalakath


If the changes had never been committed/stashed/staged, then you're out of luck. If they have, then you should be able to git your changes back by looking for them in git reflog.

like image 42
jamessan Avatar answered Sep 20 '22 08:09

jamessan