git-annex/Command/ConfigList.hs
Joey Hess cf33eff684 git-annex-shell configlist should not be standalone
This makes it initialize the repository with a uuid, and list the uuid,
allowing automatic setup of bare repositories when git-annex is used.
2011-08-17 14:44:31 -04:00

28 lines
529 B
Haskell

{- git-annex command
-
- Copyright 2010 Joey Hess <joey@kitenet.net>
-
- Licensed under the GNU GPL version 3 or higher.
-}
module Command.ConfigList where
import Control.Monad.State (liftIO)
import Annex
import Command
import UUID
command :: [Command]
command = [repoCommand "configlist" paramNothing seek
"outputs relevant git configuration"]
seek :: [CommandSeek]
seek = [withNothing start]
start :: CommandStartNothing
start = do
g <- Annex.gitRepo
u <- getUUID g
liftIO $ putStrLn $ "annex.uuid=" ++ u
stop