Scroll to navigation

Dist::Zilla::PluginBundle::Git(3pm) User Contributed Perl Documentation Dist::Zilla::PluginBundle::Git(3pm)

NAME

Dist::Zilla::PluginBundle::Git - All git plugins in one bundle

VERSION

version 2.049

SYNOPSIS

In your dist.ini:

    [@Git]
    changelog   = Changes             ; this is the default
    allow_dirty = dist.ini            ; see Git::Check...
    allow_dirty = Changes             ; ... and Git::Commit
    commit_msg  = v%V%n%n%c           ; see Git::Commit
    tag_format  = v%V                 ; see Git::Tag
    tag_message = v%V                 ; see Git::Tag
    push_to     = origin              ; see Git::Push

DESCRIPTION

This is a plugin bundle to load the most common Git plugins. It is equivalent to:

    [Git::Check]
    [Git::Commit]
    [Git::Tag]
    [Git::Push]

Any options given are passed through to each plugin. See each plugin's documentation for the options it supports. (Plugins just ignore options they don't understand.)

SEE ALSO

  • Git::Check

    Before a release, check that the repo is in a clean state (you have committed your changes).

  • Git::Commit

    After a release, commit updated files.

  • Git::Tag

    After a release, tag the just-released version.

  • Git::Push

    After a release, push the released code & tag to your public repo.

For a list of Git plugins in this distribution that are not part of this bundle, see Dist::Zilla::Plugin::Git.

SUPPORT

Bugs may be submitted through the RT bug tracker <https://rt.cpan.org/Public/Dist/Display.html?Name=Dist-Zilla-Plugin-Git> (or bug-Dist-Zilla-Plugin-Git@rt.cpan.org <mailto:bug-Dist-Zilla-Plugin-Git@rt.cpan.org>).

There is also a mailing list available for users of this distribution, at <http://dzil.org/#mailing-list>.

There is also an irc channel available for users of this distribution, at "#distzilla" on "irc.perl.org" <irc://irc.perl.org/#distzilla>.

AUTHOR

Jerome Quelin

COPYRIGHT AND LICENCE

This software is copyright (c) 2009 by Jerome Quelin.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.

2024-01-20 perl v5.38.2