class Git::Commands::Remote::Remove

‘git remote remove` command

Removes a remote and its associated tracking refs and configuration.

@example Remove a remote

remove = Git::Commands::Remote::Remove.new(execution_context)
remove.call('origin')

@example Remove a remote with a name that looks like a flag

remove = Git::Commands::Remote::Remove.new(execution_context)
remove.call('-weirdremote')

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

@see Git::Commands::Remote

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

@api private