Re: [PATCH] notes: fix erroneous "git notes prune [-n | -v]" message

2017-11-21 Thread Jonathan Nieder
Robert P. J. Day wrote: > so it should simply be corrected to: > > git notes prune [-n] [-v] > > sound about right? Sounds good to me. Thanks for finding these confusing docs, by the way. Jonathan

Re: [PATCH] notes: fix erroneous "git notes prune [-n | -v]" message

2017-11-21 Thread Robert P. J. Day
On Tue, 21 Nov 2017, Jonathan Nieder wrote: > Hi, > > Robert P. J. Day wrote: > > > It seems clear that the man page SYNPOSIS and the usage message > > referring to: > > > > git notes prune [-n | -v] > > > > is incorrect, as "-n" (dry run) and "-v" (verbose) are not > > alternatives, so fix

Re: [PATCH] notes: fix erroneous "git notes prune [-n | -v]" message

2017-11-21 Thread Jonathan Nieder
Hi, Robert P. J. Day wrote: > It seems clear that the man page SYNPOSIS and the usage message > referring to: > > git notes prune [-n | -v] > > is incorrect, as "-n" (dry run) and "-v" (verbose) are not > alternatives, so fix both places to refer to: > > git notes prune [-n] [-v | -q] > > to

[PATCH] notes: fix erroneous "git notes prune [-n | -v]" message

2017-11-21 Thread Robert P. J. Day
It seems clear that the man page SYNPOSIS and the usage message referring to: git notes prune [-n | -v] is incorrect, as "-n" (dry run) and "-v" (verbose) are not alternatives, so fix both places to refer to: git notes prune [-n] [-v | -q] to match the rest of the man page. Signed-off-by: