diff options
author | Joey Hess <joey@kitenet.net> | 2014-02-13 02:24:30 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2014-02-13 02:24:30 -0400 |
commit | 53861087d55de45ec6b24f6e452469dfa72c1644 (patch) | |
tree | 2c0274b816b8d21640d4eb4c51fabff50e1406a3 /CmdLine | |
parent | 36f34c21f3dc8aa448f129e2a727381ca61c4c85 (diff) |
limiting files based on metadata
Note that there is currently no caching, so
--metadata foo=bar --metadata tag=blah
will currently read the log 2x per file.
Diffstat (limited to 'CmdLine')
-rw-r--r-- | CmdLine/GitAnnex/Options.hs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/CmdLine/GitAnnex/Options.hs b/CmdLine/GitAnnex/Options.hs index fcf5deaf0..f9f5989ee 100644 --- a/CmdLine/GitAnnex/Options.hs +++ b/CmdLine/GitAnnex/Options.hs @@ -54,6 +54,8 @@ gitAnnexOptions = commonOptions ++ "match files larger than a size" , Option [] ["smallerthan"] (ReqArg Limit.addSmallerThan paramSize) "match files smaller than a size" + , Option [] ["metadata"] (ReqArg Limit.addMetaData "FIELD=VALUE") + "match files with attached metadata" , Option [] ["want-get"] (NoArg Limit.Wanted.addWantGet) "match files the repository wants to get" , Option [] ["want-drop"] (NoArg Limit.Wanted.addWantDrop) |