class Git::Commands::Remote::List

‘git remote` command (list remotes)

Lists all configured remote connections.

@example List all remotes

list = Git::Commands::Remote::List.new(execution_context)
list.call

@example List remotes with URLs

list = Git::Commands::Remote::List.new(execution_context)
list.call(verbose: true)

@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