git apply stash code example
Example 1: git stas hauntracked files
git stash --include-untracked
Example 2: git view stash
git stash show -p stash@{1}
Example 3: git stash apply item
git stash apply stash@{index}
Example 4: git stash apply specific stash
git stash apply "stash@{n}"
or
git stash apply n
Example 5: git stash clean command
git stash clear
Example 6: git delete stash
git stash drop stash@{index} // here index will be shown after getting stash list.