Remove -j short option for --json-progress; that option was already taken for --json.
This commit was sponsored by Trenton Cronholm.
This commit is contained in:
parent
ab867a7af9
commit
280442ca2c
3 changed files with 6 additions and 1 deletions
|
@ -3,6 +3,8 @@ git-annex (6.20170102) UNRELEASED; urgency=medium
|
|||
* Increase default cost for p2p remotes from 200 to 1000.
|
||||
This makes git-annex prefer transferring data from special
|
||||
remotes when possible.
|
||||
* Remove -j short option for --json-progress; that option was already
|
||||
taken for --json.
|
||||
|
||||
-- Joey Hess <id@joeyh.name> Fri, 06 Jan 2017 15:22:06 -0400
|
||||
|
||||
|
|
|
@ -294,7 +294,7 @@ jsonOption = globalFlag (Annex.setOutput (JSONOutput False))
|
|||
|
||||
jsonProgressOption :: GlobalOption
|
||||
jsonProgressOption = globalFlag (Annex.setOutput (JSONOutput True))
|
||||
( long "json-progress" <> short 'j'
|
||||
( long "json-progress"
|
||||
<> help "include progress in JSON output"
|
||||
<> hidden
|
||||
)
|
||||
|
|
|
@ -13,3 +13,6 @@ $> git annex copy --help
|
|||
"""]]
|
||||
|
||||
[[!meta author=yoh]]
|
||||
|
||||
> Removed the short -j for --json-progress, I don't think that
|
||||
> needs a short option. [[done]] --[[Joey]]
|
||||
|
|
Loading…
Reference in a new issue