packages feed

gitlib-0.3.0: Data/Git/Repository.hs

{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE TemplateHaskell #-}

-- | Interface for opening and creating repositories.  Repository objects are
--   immutable, and serve only to refer to the given repository.  Any data
--   associated with the repository — such as the list of branches — is
--   queried as needed.
module Data.Git.Repository
       ( ObjPtr

       , Updatable(..)

       , Repository
       , HasRepository(..)

       , openRepository
       , createRepository
       , openOrCreateRepository )
       where

import Data.Git.Internal

-- Repository.hs