{- git-annex command - - Copyright 2010 Joey Hess - - 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