aboutsummaryrefslogtreecommitdiff
path: root/Types/BranchState.hs
diff options
context:
space:
mode:
Diffstat (limited to 'Types/BranchState.hs')
-rw-r--r--Types/BranchState.hs11
1 files changed, 9 insertions, 2 deletions
diff --git a/Types/BranchState.hs b/Types/BranchState.hs
index 40d7f5c2c..bc1d32e69 100644
--- a/Types/BranchState.hs
+++ b/Types/BranchState.hs
@@ -7,11 +7,18 @@
module Types.BranchState where
+import System.IO
+
data BranchState = BranchState {
- branchUpdated :: Bool,
+ branchUpdated :: Bool, -- has the branch been updated this run?
+
+ -- (from, to) handles used to talk to a git-cat-file process
+ catFileHandles :: Maybe (Handle, Handle),
+
+ -- the content of one file is cached
cachedFile :: Maybe FilePath,
cachedContent :: String
}
startBranchState :: BranchState
-startBranchState = BranchState False Nothing ""
+startBranchState = BranchState False Nothing Nothing ""