I would like to recover myfile.py following a wrong git operation.
This is what I did:
git add myfile.py
git checkout 0ddb6x myfile.py (wrong operation, which changed the content myfile.py on my local machine)
made some change on myfile.py
git add myfile.py (wrong operation)
Now I hope go go back to myfile.py before checkout. Is it possible?