summaryrefslogtreecommitdiff
path: root/Annex.hs
diff options
context:
space:
mode:
Diffstat (limited to 'Annex.hs')
-rw-r--r--Annex.hs7
1 files changed, 5 insertions, 2 deletions
diff --git a/Annex.hs b/Annex.hs
index bede0cbfb..b6834d6dd 100644
--- a/Annex.hs
+++ b/Annex.hs
@@ -23,6 +23,7 @@ import GitQueue
import Types.Backend
import Types.Remote
import Types.Crypto
+import Types.Branch
import TrustLevel
import Types.UUID
@@ -39,7 +40,8 @@ data AnnexState = AnnexState
, quiet :: Bool
, force :: Bool
, fast :: Bool
- , updated :: Bool
+ , branchupdated :: Bool
+ , branchcache :: BranchCache
, forcebackend :: Maybe String
, forcenumcopies :: Maybe Int
, defaultkey :: Maybe String
@@ -60,7 +62,8 @@ newState allbackends gitrepo = AnnexState
, quiet = False
, force = False
, fast = False
- , updated = False
+ , branchupdated = False
+ , branchcache = emptyBranchCache
, forcebackend = Nothing
, forcenumcopies = Nothing
, defaultkey = Nothing