how to apply stash in git code example
Example 1: git stash apply item
git stash apply stash@{index}
Example 2: git stash apply specific stash
git stash apply "stash@{n}"
or
git stash apply n
Example 3: git stash clean command
git stash clear
Example 4: git stash contnet
git stash show -p stash@{1}
Example 5: git save to stash
git stash save "name to describe stashed content"
Example 6: git stash
git stash or git stash push