git stash apply all as unstaged code example
Example 1: git stash apply specific stash
git stash apply "stash@{n}"
or
git stash apply n
Example 2: partially apply stash git
git show stash@{0} -- <file(s) in question> | git apply
git stash apply "stash@{n}"
or
git stash apply n
git show stash@{0} -- <file(s) in question> | git apply