NAME
App::karr::Git - Git operations for karr sync (all-native via Git::Native + libgit2)
VERSION
version 0.300
SYNOPSIS
my $git = App::karr::Git->new(dir => '.');
$git->pull;
my @ids = $git->list_task_refs;
my $task = $git->load_task_ref($ids[0]);
DESCRIPTION
App::karr::Git provides the low-level Git interface used by karr for syncing board state through refs/karr/*. Everything — local object/ref ops and network fetch/push — runs natively via Git::Native (FFI to libgit2). No fork/exec per op. SSH-agent and HTTPS-token credentials are supplied through the libgit2 credential-acquire callback.
SEE ALSO
karr, App::karr, App::karr::BoardStore, App::karr::Task, App::karr::Config, Git::Native
SUPPORT
Issues
Please report bugs and feature requests on GitHub at https://github.com/Getty/karr/issues.
IRC
Join #langertha on irc.perl.org or message Getty directly.
CONTRIBUTING
Contributions are welcome! Please fork the repository and submit a pull request.
AUTHOR
Torsten Raudssus <getty@cpan.org>
COPYRIGHT AND LICENSE
This software is copyright (c) 2026 by Torsten Raudssus <torsten@raudssus.de> https://raudssus.de/.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.