git remove all stashes code example
Example 1: git stash drop all
git stash clear
Example 2: git remove first stash
git stash drop 0
Example 3: git save to stash
git stash save "name to describe stashed content"
git stash clear
git stash drop 0
git stash save "name to describe stashed content"