BSD-3-Clause licensed and maintained by Vincent Hanquez
This version can be pinned in stack with:git-0.2.1@sha256:6ea2855c249c61dcc49ce3ce1ec34ce0c30ab75516e8310ae31fc3c01a7689fe,3434

Module documentation for 0.2.1

  • Data
    • Data.Git
      • Data.Git.Delta
      • Data.Git.Diff
      • Data.Git.Monad
      • Data.Git.Named
      • Data.Git.Ref
      • Data.Git.Repository
      • Data.Git.Revision
      • Data.Git.Storage
        • Data.Git.Storage.Loose
        • Data.Git.Storage.Object
        • Data.Git.Storage.Pack
        • Data.Git.Storage.PackIndex
      • Data.Git.Types

git

Build Status BSD Haskell

git is a reimplementation of git storage and protocol in pure haskell.

what it does do:

  • read loose objects, and packed objects.
  • write new loose objects
  • git like operations available: commit, cat-file, verify-pack, rev-list, ls-tree.

what is doesn’t do:

  • reimplement the whole of git.
  • checkout’s index reading/writing, fetching, merging, diffing.