class Git::Commands::SymbolicRef::Delete

Deletes a symbolic ref via ‘git symbolic-ref –delete`

Removes the named symbolic ref. When ‘quiet: true`, exit status 1 (non-symbolic ref) does not produce an error message.

@example Delete a symbolic ref

cmd = Git::Commands::SymbolicRef::Delete.new(execution_context)
cmd.call('HEAD')

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

@see Git::Commands::SymbolicRef

@see git-scm.com/docs/git-symbolic-ref git-symbolic-ref documentation

@api private