git stash @apply stash{(1)} code example
Example 1: git stash apply specific stash
git stash apply "stash@{n}"
or
git stash apply n
Example 2: stash clear list
git stash clear // to clear the whole list
git stash apply "stash@{n}"
or
git stash apply n
git stash clear // to clear the whole list