diff options
author | Joey Hess <joey@kitenet.net> | 2013-05-25 00:37:41 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2013-05-25 00:37:41 -0400 |
commit | f5ccd0349ef558d222005aa05068d6a391293959 (patch) | |
tree | 0418de30ef46e5f363022a9ae1cb8deeb4d339c8 /Annex.hs | |
parent | f36eb3efd41c1a35fcbba8fcee2707826c4716a8 (diff) |
assistant: Work around git-cat-file's not reloading the index after files are staged.
Argh.
Diffstat (limited to 'Annex.hs')
-rw-r--r-- | Annex.hs | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -86,6 +86,7 @@ data AnnexState = AnnexState , force :: Bool , fast :: Bool , auto :: Bool + , daemon :: Bool , branchstate :: BranchState , repoqueue :: Maybe Git.Queue.Queue , catfilehandles :: M.Map FilePath CatFileHandle @@ -116,6 +117,7 @@ newState gitrepo = AnnexState , force = False , fast = False , auto = False + , daemon = False , branchstate = startBranchState , repoqueue = Nothing , catfilehandles = M.empty |