2018-07-04 10:45:42 +02:00
|
|
|
#!perl
|
|
|
|
# ABSTRACT: subcommand to git for issue management
|
|
|
|
# PODNAME: git-issue
|
|
|
|
use strict;
|
|
|
|
use warnings;
|
|
|
|
use Try::Tiny;
|
|
|
|
use App::Git::IssueManager;
|
|
|
|
|
2018-09-13 23:16:47 +02:00
|
|
|
=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.
|
|
|
|
|
|
|
|
=cut
|
|
|
|
|
|
|
|
|
2018-07-04 10:45:42 +02:00
|
|
|
App::Git::IssueManager->new_with_command()->run;
|