Method: Git::Lib#config_set
- Defined in:
- lib/git/lib.rb
#config_set(name, value, options = {})
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
1090 1091 1092 1093 1094 |
# File 'lib/git/lib.rb', line 1090 def config_set(name, value, = {}) ArgsBuilder.validate!(, CONFIG_SET_OPTION_MAP) flags = build_args(, CONFIG_SET_OPTION_MAP) command('config', *flags, name, value) end |