diff options
author | Øyvind A. Holm <sunny@sunbase.org> | 2015-09-08 14:29:25 +0200 |
---|---|---|
committer | Joey Hess <joeyh@joeyh.name> | 2015-09-09 14:31:21 -0400 |
commit | 4be5cbd43e41b0618b21157a9ddc67bfe04ac561 (patch) | |
tree | 521981e6119374f5a5def15750669f78dce405d6 /Command | |
parent | 00ddb2b5d9e9e1c765e74820a4fc3ab8dc637785 (diff) |
Command/Unused.hs: Change --unused-refspec back to --used-refspec
Fix typo in commit aa96e9c ("convert Unused, and remove some dead code
for old style option parsing", 2015-07-10), the "git-annex unused
--used-refspec" option was incorrectly changed to --unused-refspec.
Diffstat (limited to 'Command')
-rw-r--r-- | Command/Unused.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Command/Unused.hs b/Command/Unused.hs index a383d567b..4756cda5d 100644 --- a/Command/Unused.hs +++ b/Command/Unused.hs @@ -53,7 +53,7 @@ optParser _ = UnusedOptions <> help "remote to check for unused content" )) <*> optional (option (eitherReader parseRefSpec) - ( long "unused-refspec" <> metavar paramRefSpec + ( long "used-refspec" <> metavar paramRefSpec <> help "refs to consider used (default: all branches)" )) |