Skip to content

Instantly share code, notes, and snippets.

@manishpathak99
Created May 30, 2018 11:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save manishpathak99/d67e308816c26be085905742f1a1c60e to your computer and use it in GitHub Desktop.
Save manishpathak99/d67e308816c26be085905742f1a1c60e to your computer and use it in GitHub Desktop.
Remove/Drop git stash range
# This will remove stash stash@{10}, stash@{11} , stash@{12}
for n in {1..2}
do
git stash drop stash@{10}
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment