class Git::Commands::Tag::Delete

Implements the ‘git tag –delete` command for deleting tags

This command deletes one or more tag references.

@example Delete a single tag

delete = Git::Commands::Tag::Delete.new(execution_context)
delete.call('v1.0.0')

@example Delete multiple tags

delete = Git::Commands::Tag::Delete.new(execution_context)
delete.call('v1.0.0', 'v2.0.0')

@note ‘arguments` block audited against git-scm.com/docs/git-tag/2.53.0

@see Git::Commands::Tag

@see git-scm.com/docs/git-tag git-tag

@api private