how to clear stash list code example
Example 1: git stash clean command
git stash clear
Example 2: stash clear list
git stash clear // to clear the whole list
Example 3: git remove first stash
git stash drop 0
git stash clear
git stash clear // to clear the whole list
git stash drop 0