Dist::Zilla::Role::GitConfig - Easy role to add git_config option to most plugins
Contents
Availability
The project homepage is <https://github.com/SineSwiper/Dist-Zilla-Plugin-Config-Git>.
The latest version of this module is available from the Comprehensive Perl Archive Network (CPAN). Visit
<http://www.perl.com/CPAN/> to find a CPAN site near you, or see
<https://metacpan.org/module/Dist::Zilla::Plugin::Config::Git/>.
Copyright And License
This software is Copyright (c) 2013 by Brendan Byrd.
This is free software, licensed under:
The Artistic License 2.0 (GPL Compatible)
perl v5.34.0 2022-06-16 Dist::Zilla::Role::GitConfig(3pm)
Description
This is an easy-to-use role for plugins to enable usage of Config::Git configurations.
Name
Dist::Zilla::Role::GitConfig - Easy role to add git_config option to most plugins
Requirements
_git_config_mapping
Hashref of option to errf string mappings.
The mappings don't work for "allow_dirty". These are (currently) hardcoded to map to "allow_dirty" and
"allow_dirty_match" options directly.
Synopsis
package Dist::Zilla::Plugin::GitReleasePlugin;
use Moose;
with 'Dist::Zilla::Role::BeforeRelease';
with 'Dist::Zilla::Role::GitConfig';
sub _git_config_mapping { +{
push_to => '%{remote}s %{local_branch}s:%{remote_branch}s',
changelog => '%{changelog}s',
} }
