Git::File::History
Git::File::History
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();
say $file-histories.history-of( "README.md");
# Repo in another directory:
my $file-histories' = Git::File::History.new( "another/dir" );
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).