git-abandon - drop a count or range of stashes
git abandon [(-d|--dry-run)] [(-q|--quiet)] [start] end
git abandon (-h|--help)
git abandon (-v|--version)
git-abandon is a shortcut for when you need to drop some, but not all, stashes. Stashes can be dropped using a count or a range. If you want to drop all your stashes, just use git stash clear.
An optional start (inclusive) of the range of stashes to drop. If not specified, zero (0) will be used.
The end (exclusive) of the range of stashes to drop.
-d|--dry-runPrint the stashes that would be dropped but don't drop them.
-q|--quietSuppress all non-error output.
-h|--helpPrint a simple help message.
-v|--versionPrint version.