Let have a file a
tracked by git and modified locally.
Moreover, that file was in the stash too.
Then:
If you did it git stash pop
, see this link
If accidentally you did only this git checkout a
you've lost.
That discards all changes in a file.
How to undo this operation?
I don't see this operation in reflog
.
Stash after pop doesn't exist (not listed), but does any of that history is available somewhere in .git
directory?