Re: [PATCH] worktree: fix option descriptions for `prune`

2017-02-07 Thread Duy Nguyen
On Tue, Feb 7, 2017 at 1:59 AM, Junio C Hamano wrote: > Patrick Steinhardt writes: > >> struct option options[] = { >> OPT__DRY_RUN(&show_only, N_("do not remove, show only")), >> - OPT__VERBOSE(&verbose, N_("report pruned objects")), >> + OPT__VERBOSE(

Re: [PATCH] worktree: fix option descriptions for `prune`

2017-02-06 Thread Junio C Hamano
Patrick Steinhardt writes: > struct option options[] = { > OPT__DRY_RUN(&show_only, N_("do not remove, show only")), > - OPT__VERBOSE(&verbose, N_("report pruned objects")), > + OPT__VERBOSE(&verbose, N_("report pruned working trees")), >

[PATCH] worktree: fix option descriptions for `prune`

2017-02-06 Thread Patrick Steinhardt
The `verbose` and `expire` options of the `git worktree prune` subcommand have wrong descriptions in that they pretend to relate to objects. But as the git-worktree(1) correctly states, these options have nothing to do with objects but only with worktrees. Fix the description accordingly. Signed-o