The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Git::Repository::FileHistory - Class representing file on git repository

SYNOPSIS

# load the File plugin
use Git::Repository 'FileHistory';


my $repo = Git::Repository->new;
my $file = $repo->file_history('somefile');


print $file->created_at;
print $file->created_by;
print $file->last_modified_at;
print $file->last_modified_by;

DESCRIPTION

Git::Repository::FileHistory is class representing file on git repository.

CONSTRUCTOR

new( $file_name )

Create a new Git::Repository::FileHistory instance, using the file name on git repository as parameter.

ACCESORS

The following accessors methods are recognized.

AUTHOR

Masayuki Matsuki y.songmu@gmail.com

BooK gives me many advice. Thanks a lot.

SEE ALSO

Git::Repository Git::Repository::Log

LICENSE

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.