2b014f1a8b
init: Avoid scanning for annexed files, which can be lengthy in a
large repository. Instead that scan is done on demand. This lets git-annex
init be run and some query commands be used in a repository without
waiting.
Note that autoinit already behaved this way, so while this will mean some
commands like git-annex get/unlock/add will do the scan the first time run,
that is not really a significant behavior change.
And, it's really better to have a consistent behavior. The reason for
the inconsistency was a strange bug discussed in
b3c4579c79
. Avoiding reconcileStaged in
init will keep avoiding whatever that was.
Sponsored-by: Dartmouth College's DANDI project
40 lines
898 B
Haskell
40 lines
898 B
Haskell
{- git-annex command
|
|
-
|
|
- Copyright 2014 Joey Hess <id@joeyh.name>
|
|
-
|
|
- Licensed under the GNU AGPL version 3 or higher.
|
|
-}
|
|
|
|
module Command.Reinit where
|
|
|
|
import Command
|
|
import Annex.Init
|
|
import Annex.UUID
|
|
import qualified Remote
|
|
import qualified Annex.SpecialRemote
|
|
|
|
cmd :: Command
|
|
cmd = dontCheck repoExists $
|
|
command "reinit" SectionUtility
|
|
"initialize repository, reusing old UUID"
|
|
(paramUUID ++ "|" ++ paramDesc)
|
|
(withParams seek)
|
|
|
|
seek :: CmdParams -> CommandSeek
|
|
seek = withWords (commandAction . start)
|
|
|
|
start :: [String] -> CommandStart
|
|
start ws = starting "reinit" (ActionItemOther (Just s)) (SeekInput ws) $
|
|
perform s
|
|
where
|
|
s = unwords ws
|
|
|
|
perform :: String -> CommandPerform
|
|
perform s = do
|
|
u <- if isUUID s
|
|
then return $ toUUID s
|
|
else Remote.nameToUUID s
|
|
storeUUID u
|
|
checkInitializeAllowed $ initialize' Nothing
|
|
Annex.SpecialRemote.autoEnable
|
|
next $ return True
|