class Git::Commands::Remote::Show

‘git remote show` command

Shows information about one or more remotes, including fetch and push URLs and branch tracking information.

@example Show information about a remote

show = Git::Commands::Remote::Show.new(execution_context)
show.call('origin')

@example Show cached information without contacting the remote

show = Git::Commands::Remote::Show.new(execution_context)
show.call('origin', n: true)

@example Show verbose output for multiple remotes

show = Git::Commands::Remote::Show.new(execution_context)
show.call('origin', 'upstream', 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