There are two types of commands; those that access the repository and those that don't. Sorted.
		
			
				
	
	
		
			28 lines
		
	
	
	
		
			545 B
			
		
	
	
	
		
			Haskell
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
	
		
			545 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 = [standaloneCommand "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
 | 
						|
	return Nothing
 |