delete stash list code example
Example 1: stash clear list
git stash clear // to clear the whole list
Example 2: git remove first stash
git stash drop 0
Example 3: git stash contnet
git stash show -p stash@{1}
git stash clear // to clear the whole list
git stash drop 0
git stash show -p stash@{1}