class Git::Commands::ConfigOptionSyntax::GetAll

Retrieve all values for a multi-valued config key

Wraps ‘git config –get-all` to return all values matching the given key name, one per line.

@example Get all values for a key

cmd = Git::Commands::ConfigOptionSyntax::GetAll.new(lib)
cmd.call('remote.origin.fetch')

@example Get all values with a value pattern

cmd = Git::Commands::ConfigOptionSyntax::GetAll.new(lib)
cmd.call('remote.origin.fetch', '\\+refs/heads/.*')

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

@see Git::Commands::ConfigOptionSyntax

@see git-scm.com/docs/git-config git-config documentation

@api private