Resource Type: git_config
- Defined in:
- lib/puppet/type/git_config.rb
- Providers:
-
git_config
Overview
Used to configure git
Examples
git_config { 'user.name':
value => 'John Doe',
}
git_config { 'user.email':
value => 'john.doe@example.com',
}
git_config { 'user.name':
value => 'Mike Color',
user => 'vagrant',
require => Class['git'],
}
git_config { 'http.sslCAInfo':
value => $companyCAroot,
user => 'root',
scope => 'system',
require => Company::Certificate['companyCAroot'],
}