Git::File::History

Work with the history of a file in a repository

Git::File::History
Logo

Get all versions of a file in a git repository. Main use case for this is when you use the repository for storage, and want to examine the progression of some files. Or whatever. I don't really know, it was an itch I had to scratch and here we are.

Installing

Usual way:

zef install Git::File::History

SYNOPSIS

use Git::File::History;

my $file-histories = Git::File::History.new(); # Will throw if not in a repo
say $file-histories.history-of( "README.md");

# .date contains a DateTime object, .state the contents of the file
for $file-histories.history-of( "t/01-basic.t") -> $fv {
   say $fv.date, " → ", $fv.state.split("\n").elems;
}

# Repo in another directory:
my $file-histories' = Git::File::History.new( "another/dir" );

# Limit to a few files (for big repos)
my $yet-another = Git::File::History.new( :files("t/*.t") );

See also

Other git-related stuff in Raku land

License

(c) JJ Merelo, [email protected]

This module will be licensed under the Artistic 2.0 License (the same as Raku itself).

Git::File::History v0.0.7

Work with the history of a file in a repository

Authors

  • J. J. Merelo

License

Artistic-2.0

Dependencies

Test Dependencies

Provides

  • Git::File::History

Documentation

The Camelia image is copyright 2009 by Larry Wall. "Raku" is trademark of the Yet Another Society. All rights reserved.

Built with Podlite — the markup and publishing tools behind this site.