Angreal provides a very thin layer to an available git binary on the operating system. It is not an interface to libgit or libgit2 but an interface to a command line interface.
a hyper light weight wrapper for a git binary. By default will attempt to find the first
git
on syspath to utilize.
from angreal.integrations.git import Git
g = Git()
git.init()
git.add("file")
git.commit("-am","commit message")