diff options
author | Roman Smrž <roman.smrz@seznam.cz> | 2025-03-05 20:42:14 +0100 |
---|---|---|
committer | Roman Smrž <roman.smrz@seznam.cz> | 2025-03-06 20:04:14 +0100 |
commit | 0658710f7fcd2ac57abfaf1c387ef363a4a889da (patch) | |
tree | 7ceeba0d9b72d5a96a0add32f8b299088f211108 /src/Command/Checkout.hs | |
parent | a8deb42b4899ce11d1937bda0b59c8b56f230bce (diff) |
Checkout command
Changelog: Added `checkout` command
Diffstat (limited to 'src/Command/Checkout.hs')
-rw-r--r-- | src/Command/Checkout.hs | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/src/Command/Checkout.hs b/src/Command/Checkout.hs new file mode 100644 index 0000000..c180a34 --- /dev/null +++ b/src/Command/Checkout.hs @@ -0,0 +1,34 @@ +module Command.Checkout ( + CheckoutCommand, +) where + +import Data.Text (Text) +import Data.Text qualified as T + +import Command +import Repo + + +data CheckoutCommand = CheckoutCommand (Maybe RepoName) Text + +instance Command CheckoutCommand where + commandName _ = "checkout" + commandDescription _ = "Checkout (part of) a given repository" + + type CommandArguments CheckoutCommand = [ Text ] + + commandUsage _ = T.pack $ unlines $ + [ "Usage: minici checkout [<repo> [<revision>]] [<option>...]" + ] + + commandInit _ _ = \case + (name : revision : _) -> CheckoutCommand (Just (RepoName name)) revision + [ name ] -> CheckoutCommand (Just (RepoName name)) "HEAD" + [] -> CheckoutCommand Nothing "HEAD" + commandExec = cmdCheckout + +cmdCheckout :: CheckoutCommand -> CommandExec () +cmdCheckout (CheckoutCommand name revision) = do + repo <- maybe getDefaultRepo getRepo name + commit <- maybe (fail $ T.unpack $ "revision `" <> revision <> "' not found") return =<< readCommit repo revision + checkoutAt commit "." |