git apply a stash code example
Example 1: git stash apply item
git stash apply stash@{index}
Example 2: git stash apply item
git checkout stash@{index} -- <filename> #stash particular file
git stash apply stash@{index}
git checkout stash@{index} -- <filename> #stash particular file