Skip to main content

Delete stashed items

Delete single item

git stash drop

Delete everything from stash

git stash clear

Delete a Specific Stash Item

View your saved stashes:

git stash list

Identify the stash ID, which looks like stash@{0}, stash@{1}, etc.

git stash drop stash@{1}