Overview
View saved stashes with:
git stash list
Git displays multiple stash entries in order, with the newest at the top and older entries below it.
Pop or apply a specific entry by supplying its stash identifier:
git stash pop <stash-identifier>
or:
git stash apply <stash-identifier>
Remove a stash entry without applying it with:
git stash drop
After drop, check the remaining entries with git stash list.