Git – How to delete all of the Git stashes at once

gitgit-stash

How can I delete all of my Git stashes at once?

Specifically I mean, with typing in one command.

Best Answer

The following command deletes all your stashes:

git stash clear

From the git documentation:

clear

Remove all the stashed states.

IMPORTANT WARNING: Those states will then be subject to pruning, and may be impossible to recover (...).