git stash pop file code example
Example 1: git stash apply item
git stash apply stash@{index}
Example 2: stash clear list
git stash clear // to clear the whole list
Example 3: how to apply changes in a single file from stash
git restore -s stash@{0} -- <filename>