Provided by: libpithub-perl_0.01041-1_all bug

NAME

       Pithub::Repos::Forks - Github v3 Repo Forks API

VERSION

       version 0.01041

METHODS

   create
       •   Create a fork for the authenticated user.

               POST /repos/:user/:repo/forks

           Examples:

               my $f = Pithub::Repos::Forks->new;
               my $result = $f->create(
                   user => 'plu',
                   repo => 'Pithub',
               );

               # or fork to an org
               my $result = $f->create(
                   user => 'plu',
                   repo => 'Pithub',
                   org  => 'CPAN-API',
               );

   list
       •   List forks

               GET /repos/:user/:repo/forks

           Examples:

               my $f = Pithub::Repos::Forks->new;
               my $result = $f->list(
                   user => 'plu',
                   repo => 'Pithub',
               );

AUTHOR

       Johannes Plunien <plu@cpan.org>

COPYRIGHT AND LICENSE

       This software is copyright (c) 2011 by Johannes Plunien.

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

perl v5.36.0                                       2023-09-02                          Pithub::Repos::Forks(3pm)