My Git repository got corrupted after a couple of hard reboots due to power supply issues and now I\'m unable to fix it (I was in the middle of staging some files at the las
Another alternative which worked for me was to reset the Git head and index to its previous state using:
git reset --keep
I also tried the following commands, but they did not work for me, but they might for you:
git reset --mixed
git fsck --full
git gc --auto
git prune --expire now
git reflog --all