Delete a stash
Git, Repository, Stash · Apr 13, 2021

Deletes a specific stash.
- Use
git stash drop <stash>
to delete the given<stash>
.
git stash drop <stash>
git stash drop stash@{1} # Deletes `stash@{1}`
Git, Repository, Stash · Apr 13, 2021
Deletes a specific stash.
git stash drop <stash>
to delete the given <stash>
.git stash drop <stash>
git stash drop stash@{1} # Deletes `stash@{1}`