Search code examples
gitgit-stash

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


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

Specifically I mean, with typing in one command.


Solution

  • 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 (...).