summaryrefslogtreecommitdiff
path: root/CmdLine.hs
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2010-11-27 17:02:53 -0400
committerGravatar Joey Hess <joey@kitenet.net>2010-11-27 17:02:53 -0400
commite97d13e29b18c4522395996299651334cb221519 (patch)
tree5270972b2c6941cd3cc66066eefbd33bce9e29e3 /CmdLine.hs
parenteeae91024285c85a7e77b1b44e501a63bced7154 (diff)
Add copy subcommand.
Diffstat (limited to 'CmdLine.hs')
-rw-r--r--CmdLine.hs5
1 files changed, 4 insertions, 1 deletions
diff --git a/CmdLine.hs b/CmdLine.hs
index 35e889d7d..837420786 100644
--- a/CmdLine.hs
+++ b/CmdLine.hs
@@ -18,6 +18,7 @@ import qualified Command.Add
import qualified Command.Unannex
import qualified Command.Drop
import qualified Command.Move
+import qualified Command.Copy
import qualified Command.Get
import qualified Command.FromKey
import qualified Command.DropKey
@@ -41,7 +42,9 @@ subCmds =
, SubCommand "drop" path Command.Drop.seek
"indicate content of files not currently wanted"
, SubCommand "move" path Command.Move.seek
- "transfer content of files to/from another repository"
+ "move content of files to/from another repository"
+ , SubCommand "copy" path Command.Copy.seek
+ "copy content of files to/from another repository"
, SubCommand "unlock" path Command.Unlock.seek
"unlock files for modification"
, SubCommand "edit" path Command.Unlock.seek