how to apply git stash from list code example
Example 1: git stash apply specific stash
git stash apply "stash@{n}"
or
git stash apply n
Example 2: git delete stash
git stash drop stash@{index} // here index will be shown after getting stash list.