assistant: Work around git-cat-file's not reloading the index after files are staged.

Argh.
This commit is contained in:
Joey Hess 2013-05-25 00:37:41 -04:00
parent ed4febb170
commit 729eab1f89
4 changed files with 30 additions and 3 deletions

View file

@ -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