--- title: Delete a stash type: snippet language: git tags: [repository,stash] author: chalarangelo cover: budapest-palace dateModified: 2021-04-13T21:10:59+03:00 --- Deletes a specific stash. - Use `git stash drop ` to delete the given ``. ```shell git stash drop ``` ```shell git stash drop stash@{1} # Deletes `stash@{1}` ```