diff options
author | Joey Hess <joey@kitenet.net> | 2011-03-05 17:23:55 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2011-03-05 17:23:55 -0400 |
commit | 0de3005c648400e67ce4bfe88ac7999e56e3b56e (patch) | |
tree | 7afefc6d0079611928706fee9e7a59012ce774d6 /GitAnnex.hs | |
parent | 41d5c4acf6810966bdef25e2fc7a4cfb78b6f972 (diff) |
whereis: New subcommand to show where a file's content has gotten to.
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 b26714a59..da91f6e74 100644 --- a/GitAnnex.hs +++ b/GitAnnex.hs @@ -34,6 +34,7 @@ import qualified Command.Unlock import qualified Command.Lock import qualified Command.PreCommit import qualified Command.Find +import qualified Command.Whereis import qualified Command.Migrate import qualified Command.Uninit import qualified Command.Trust @@ -66,6 +67,7 @@ cmds = concat , Command.Unused.command , Command.DropUnused.command , Command.Find.command + , Command.Whereis.command , Command.Migrate.command , Command.Map.command ] |