diff options
author | Joey Hess <joey@kitenet.net> | 2011-03-19 14:33:24 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2011-03-19 14:33:24 -0400 |
commit | 828a84ba3341d4b7a84292d8b9002a8095dd2382 (patch) | |
tree | d1c854a9c3d48bd7256a7c5e1db8dfae75d81f68 /GitAnnex.hs | |
parent | 33cb114be5135ce02671d8ce80440d40e97ca824 (diff) |
Add version command to show git-annex version as well as repository version information.
Diffstat (limited to 'GitAnnex.hs')
-rw-r--r-- | GitAnnex.hs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/GitAnnex.hs b/GitAnnex.hs index b9c22bdfb..adf07e5b3 100644 --- a/GitAnnex.hs +++ b/GitAnnex.hs @@ -42,6 +42,7 @@ import qualified Command.Untrust import qualified Command.Semitrust import qualified Command.Map import qualified Command.Upgrade +import qualified Command.Version cmds :: [Command] cmds = concat @@ -72,6 +73,7 @@ cmds = concat , Command.Migrate.command , Command.Map.command , Command.Upgrade.command + , Command.Version.command ] options :: [Option] |