module Command.Checkout ( CheckoutCommand, ) where import Data.Maybe import Data.Text (Text) import Data.Text qualified as T import System.Console.GetOpt import Command import Repo data CheckoutCommand = CheckoutCommand CheckoutOptions (Maybe RepoName) (Maybe Text) data CheckoutOptions = CheckoutOptions { coPath :: Maybe FilePath , coSubtree :: Maybe FilePath } instance Command CheckoutCommand where commandName _ = "checkout" commandDescription _ = "Checkout (part of) a given repository" type CommandArguments CheckoutCommand = [ Text ] commandUsage _ = T.pack $ unlines $ [ "Usage: minici checkout [ []] [