git stash pop a specific commit code example
Example 1: git stash apply specific stash
git stash apply "stash@{n}"
or
git stash apply n
Example 2: git stash save name
$ git stash push -m "john-hancock"
$ git stash apply stash^{/john-hancock}
git stash apply "stash@{n}"
or
git stash apply n
$ git stash push -m "john-hancock"
$ git stash apply stash^{/john-hancock}