--- title: Delete a stash tags: repository,stash,intermediate --- Deletes a specific stash. - Use `git stash drop ` to delete the given ``. ```sh git stash drop ``` ```sh git stash drop stash@{1} # Deletes `stash@{1}` ```