2011-06-22 19:58:30 +00:00
|
|
|
{- git-annex BranchState data type
|
|
|
|
-
|
|
|
|
- Copyright 2011 Joey Hess <joey@kitenet.net>
|
|
|
|
-
|
|
|
|
- Licensed under the GNU GPL version 3 or higher.
|
|
|
|
-}
|
|
|
|
|
|
|
|
module Types.BranchState where
|
|
|
|
|
|
|
|
data BranchState = BranchState {
|
2011-06-30 01:23:40 +00:00
|
|
|
branchUpdated :: Bool, -- has the branch been updated this run?
|
2012-01-14 16:07:36 +00:00
|
|
|
indexChecked :: Bool, -- has the index file been checked to exist?
|
2011-06-30 01:23:40 +00:00
|
|
|
|
|
|
|
-- the content of one file is cached
|
2011-06-22 19:58:30 +00:00
|
|
|
cachedFile :: Maybe FilePath,
|
|
|
|
cachedContent :: String
|
|
|
|
}
|
|
|
|
|
|
|
|
startBranchState :: BranchState
|
2012-01-14 16:07:36 +00:00
|
|
|
startBranchState = BranchState False False Nothing ""
|