trusty (3) Dist::Zilla::Plugin::Git::Push.3pm.gz

Provided by: libdist-zilla-plugin-git-perl_2.019-1_all bug

NAME

       Dist::Zilla::Plugin::Git::Push - push current branch

VERSION

       version 2.019

SYNOPSIS

       In your dist.ini:

           [Git::Push]
           push_to = origin       ; this is the default
           push_to = origin HEAD:refs/heads/released ; also push to released branch
           remotes_must_exist = 1 ; this is the default

DESCRIPTION

       Once the release is done, this plugin will push current git branch to remote end, with the associated
       tags.

       The plugin accepts the following options:

       •   push_to - the name of the a remote to push to. The default is origin.  This may be specified multiple
           times to push to multiple repositories.

       •   remotes_must_exist - if true, then Git::Push checks before a release to ensure that all named remotes
           specified in "push_to" are configured in your repo.  The default is true.  Remotes specified as a URL
           or path are not checked, but will produce a "Will push to %s (not checked)" message.

AUTHOR

       Jerome Quelin

       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.