How can I delete all of my Git stashes at once?
Specifically I mean, with typing in one command.
There are two ways to delete a stash:
$ git stash drop
. $ git stash clear
.Use both of them with caution, it maybe is difficult to revert the once deleted stashes.
Here is the reference article.