summaryrefslogtreecommitdiff
path: root/CmdLine.hs
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2010-12-03 00:33:41 -0400
committerGravatar Joey Hess <joey@kitenet.net>2010-12-03 00:33:41 -0400
commit57305570eb5fce88c743ca4f7ff127c7ef582310 (patch)
treee2f590eca8f1efef4bc1ec6bcfe99f8e0474e909 /CmdLine.hs
parent6f932a0963341b235f262c43982cc138f443f2de (diff)
Add uninit subcommand. Closes: #605749
Diffstat (limited to 'CmdLine.hs')
-rw-r--r--CmdLine.hs3
1 files changed, 3 insertions, 0 deletions
diff --git a/CmdLine.hs b/CmdLine.hs
index 837420786..0903cc1fb 100644
--- a/CmdLine.hs
+++ b/CmdLine.hs
@@ -32,6 +32,7 @@ import qualified Command.Unlock
import qualified Command.Lock
import qualified Command.PreCommit
import qualified Command.Find
+import qualified Command.Uninit
subCmds :: [SubCommand]
subCmds =
@@ -55,6 +56,8 @@ subCmds =
"initialize git-annex with repository description"
, SubCommand "unannex" path Command.Unannex.seek
"undo accidential add command"
+ , SubCommand "uninit" path Command.Uninit.seek
+ "de-initialize git-annex and clean out repository"
, SubCommand "pre-commit" path Command.PreCommit.seek
"run by git pre-commit hook"
, SubCommand "fromkey" key Command.FromKey.seek