class Git::Commands::Stash::Drop
Remove a stash entry from the stash list
Removes a single stash entry from the list of stash entries. If no stash reference is given, it removes the latest one.
@example Drop the latest stash
Git::Commands::Stash::Drop.new(execution_context).call
@example Drop a specific stash
Git::Commands::Stash::Drop.new(execution_context).call('stash@\\{2}')
@note โarguments` block audited against git-scm.com/docs/git-stash/2.53.0
@see Git::Commands::Stash Git::Commands::Stash for usage examples
@see git-scm.com/docs/git-stash git-stash documentation
@api private