class Git::Commands::ConfigOptionSyntax::Add

Append a value to a multi-valued config key

Wraps ‘git config –add` to add a new line to a config key without altering existing values.

@example Add a value to a multi-valued key

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

@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