Files
30-seconds-of-code/snippets/git/s/delete-stash.md
2023-05-07 16:07:29 +03:00

355 B

title, type, language, tags, author, cover, dateModified
title type language tags author cover dateModified
Delete a stash snippet git
repository
stash
chalarangelo budapest-palace 2021-04-13T21:10:59+03:00

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