git pop @{0} code example
Example 1: git stash apply specific stash
git stash apply "stash@{n}"
or
git stash apply n
Example 2: git stash contnet
git stash show -p stash@{1}
git stash apply "stash@{n}"
or
git stash apply n
git stash show -p stash@{1}