Skip to content
This repository has been archived by the owner on Jun 6, 2018. It is now read-only.

Latest commit

 

History

History
20 lines (14 loc) · 437 Bytes

README.md

File metadata and controls

20 lines (14 loc) · 437 Bytes

Git::Simple

Build Status

Simple interface to Git command

SYNOPSIS

#!/usr/bin/env perl6

use v6;
use lib 'lib';
use Git::Simple;

for '..'.IO.dir -> $path {
    if $path.d {
        say "» path=" ~ $path.Str;
        say Git::Simple.new(cwd => $path.Str).branch-info;
    }
}