Created
May 30, 2018 11:31
-
-
Save manishpathak99/d67e308816c26be085905742f1a1c60e to your computer and use it in GitHub Desktop.
Remove/Drop git stash range
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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