Git::Class::Role::Fetch - Git::Class::Role::Fetch documentation


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

Index


Code Index:

NAME

Top

Git::Class::Role::Fetch

DESCRIPTION

Top

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

METHOD

Top

fetch

AUTHOR

Top

Kenichi Ishigaki, <ishigaki@cpan.org>

COPYRIGHT AND LICENSE

Top


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

package Git::Class::Role::Fetch;

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

sub fetch {
  my $self = shift;

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

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

1;

__END__