From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more

#!/usr/bin/env perl
# ABSTRACT: subcommand to git for issue management
# PODNAME: git-issue
use strict;
App::Git::IssueManager->new_with_command()->run;
__END__
=pod
=encoding UTF-8
=head1 NAME
git-issue - subcommand to git for issue management
=head1 VERSION
version 0.2
=head1 DESCRIPTION
B<git-issue> is a subcommand to the git version control system for manage issues in a
distributed manner. It uses the B<Git::IssueManager> module to provide all management
functions.
=head1 AUTHOR
Dominik Meyer <dmeyer@federationhq.de>
=head1 COPYRIGHT AND LICENSE
This software is Copyright (c) 2018 by Dominik Meyer.
This is free software, licensed under:
The GNU General Public License, Version 2, June 1991
=head1 AVAILABILITY
The latest version of this module is available from the Comprehensive Perl
Archive Network (CPAN). Visit L<http://www.perl.com/CPAN/> to find a CPAN
=head1 BUGS
Please report any bugs or feature requests by email to
L<byterazor@federationhq.de|mailto:byterazor@federationhq.de>.
When submitting a bug or request, please include a test-file or a
patch to an existing test-file that illustrates the bug or desired
feature.
=head1 COPYRIGHT AND LICENSE
This software is Copyright (c) 2018 by Dominik Meyer.
This is free software, licensed under:
The GNU General Public License, Version 2, June 1991
=cut