Pithub::Repos::Forks(3pm) | User Contributed Perl Documentation | Pithub::Repos::Forks(3pm) |
Pithub::Repos::Forks - Github v3 Repo Forks API
version 0.01040
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', );
GET /repos/:user/:repo/forks
Examples:
my $f = Pithub::Repos::Forks->new; my $result = $f->list( user => 'plu', repo => 'Pithub', );
Johannes Plunien <plu@cpan.org>
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.
2022-10-04 | perl v5.34.0 |