logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

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

Author

       Jerome Quelin

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.)

Name

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

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>.

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

Version

       version 2.051

See Also