| Git-Class documentation | Contained in the Git-Class distribution. |
Git::Class::Role::Fetch
This is a role that does git fetch .... See http://www.kernel.org/pub/software/scm/git-core/docs/git-fetch.html for details.
Kenichi Ishigaki, <ishigaki@cpan.org>
Copyright (C) 2009 by Kenichi Ishigaki.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
| 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__