NAME
    Dist::Zilla::Plugin::Git::Remote::Check - Ensure no pending commits on a
    remote branch before release

VERSION
    version 0.1.0

SYNOPSIS
      [Git::Remote::Check]
       ; Provided by Dist::Zilla::Role::Git::Remote 
      ; String
      ; The name of the remote to update.
      ; Must exist in Git.
      ; default is 'origin'
      remote_name = origin

      ; Provided by Dist::Zilla::Role::Git::Remote::Update
      ; Boolean
      ; turn updating on/off
      ; default is 'on' ( 1 / true )
      do_update = 1

      ; Provided by Dist::Zilla::Role::Git::Remote::Branch
      ; String
      ; the name of the branch on the remote side to check against
      ; default is the same value us 'branch'
      remote_branch = master

      ; String
      ; the name of the branch on the local side to check.
      ; default is 'master'
      branch = master

      ; Provided by Dist::Zilla::Role::Git::Remote::Check;
      ; Int
      ; How many of the most recent commits to dump when we're behind upstream.
      ; default = 5
      report_commits = 5

AUTHOR
    Kent Fredric <kentnl@cpan.org>

COPYRIGHT AND LICENSE
    This software is copyright (c) 2011 by Kent Fredric <kentnl@cpan.org>.

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

