Files
30-seconds-of-code/snippets/delete-stash.md
2021-04-13 19:45:31 +03:00

248 B

title, tags
title tags
Delete a stash repository,stash,intermediate

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}`