unstash git stash code example
Example 1: git stash apply specific stash
git stash apply "stash@{n}"
or
git stash apply n
Example 2: how to undo a git stash
git stash apply
git stash apply "stash@{n}"
or
git stash apply n
git stash apply