diff options
author | Joey Hess <joey@kitenet.net> | 2013-07-03 15:26:59 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2013-07-03 15:26:59 -0400 |
commit | 289a3f7749a5086a19a22b277a022e3b006da94f (patch) | |
tree | 10c4a4fe5ab4391c82cf91f4069bf0d7f4c7490b /GitAnnex | |
parent | 0e4ed4dd9bf9b78c1723400e9c787a18430c5f57 (diff) |
--unused: New switch that makes git-annex operate on all data found by the last run of git annex unused. Supported by fsck, get, move, copy.
Diffstat (limited to 'GitAnnex')
-rw-r--r-- | GitAnnex/Options.hs | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/GitAnnex/Options.hs b/GitAnnex/Options.hs index 350e54513..e74fc0a03 100644 --- a/GitAnnex/Options.hs +++ b/GitAnnex/Options.hs @@ -59,6 +59,10 @@ options = Option.common ++ trustArg t = ReqArg (Remote.forceTrust t) paramRemote -allOption :: Option -allOption = Option ['A'] ["all"] (NoArg (Annex.setFlag "all")) - "operate on all versions of all files" +keyOptions :: [Option] +keyOptions = + [ Option ['A'] ["all"] (NoArg (Annex.setFlag "all")) + "operate on all versions of all files" + , Option ['U'] ["unused"] (NoArg (Annex.setFlag "unused")) + "operate on files found by last run of git-annex unused" + ] |