Git::Class::Role::Branch - Git::Class::Role::Branch documentation


Git-Class documentation Contained in the Git-Class distribution.

Index


Code Index:

NAME

Top

Git::Class::Role::Branch

DESCRIPTION

Top

This is a role that does git branch .... See http://www.kernel.org/pub/software/scm/git-core/docs/git-branch.html for details.

METHOD

Top

branch

AUTHOR

Top

Kenichi Ishigaki, <ishigaki@cpan.org>

COPYRIGHT AND LICENSE

Top


Git-Class documentation Contained in the Git-Class distribution.

package Git::Class::Role::Branch;

use Any::Moose '::Role'; with 'Git::Class::Role::Execute';
requires 'git';

sub branch {
  my $self = shift;

  # my ($options, @args) = $self->_get_options(@_);

  $self->git( branch => @_ );
}

1;

__END__