Git::PurePerl::Walker

Walk over a sequence of commits in a Git::PurePerl repo
Download

Git::PurePerl::Walker Ranking & Summary

Advertisement

  • Rating:
  • License:
  • Perl Artistic License
  • Price:
  • FREE
  • Publisher Name:
  • Kent Fredric
  • Publisher web site:
  • http://search.cpan.org/~kentnl/

Git::PurePerl::Walker Tags


Git::PurePerl::Walker Description

Git::PurePerl::Walker is a Perl module to walk over a sequence of commits in a Git::PurePerl repo.SYNOPSIS use Git::PurePerl::Walker; use Git::PurePerl::Walker::Method::FirstParent; my $repo = Git::PurePerl->new( ... ); my $walker = Git::PurePerl::Walker->new( repo => $repo, method => Git::PurePerl::Walker::Method::FirstParent->new( start => $repo->ref_sha1('refs/heads/master'), ), on_commit => sub { my ( $commit ) = @_; print $commit->sha1; }, ); $walker->step_all;Product's homepage


Git::PurePerl::Walker Related Software