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

NAME

Git::Repository::Plugin::Status - Show the working tree status

VERSION

version 0.02

SYNOPSIS

    # load the Status plugin
        use Git::Repository 'Status';
 
        # get the status of all files
        my @status = Git::Repository->status('--ignored');
 
        # print all ignored files
        for (@status) {
            say $_->path1 if $_->ignored;
        }

DESCRIPTION

This module adds the status method to Git::Repository to get the status of a git working tree in form of Git::Repository::Status objects.

AUTHOR

Jakob Voß

COPYRIGHT AND LICENSE

This software is copyright (c) 2013 by Jakob Voß.

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