see list of stashes git code example
Example 1: git view stash
git stash show -p stash@{1}
Example 2: git list of stashes
git stash list
Example 3: git remove first stash
git stash drop 0
git stash show -p stash@{1}
git stash list
git stash drop 0