On Tue, Apr 17, 2018 at 2:19 PM, Stefan Beller <[email protected]> wrote:
> The force flag is very common in many commands and is commonly
> abbreviated with '-f', so add that to worktree removal, too by using
> OPT__FORCE instead of a self cooked OPT_BOOL for force.
The missing bit of this sentence:
...self cooked OPT_BOOL for force which forgets '-f'.
> While at it, add the PARSE_OPT_NOCOMPLETE flag to the force command line
> option as forcing a removal may lose files.
>
> The short form of "-f" is already documented in the man page,
> so we do not have to adjust the docs.
Makes sense. A possible rewrite (of the entire commit message):
worktree: remove: recognize -f as short for --force
Many commands support a --force option, frequently abbreviated as
-f, however, "git worktree remove"'s hand-rolled OPT_BOOL forgets
to recognize the short form, despite git-worktree.txt documenting
-f as supported. Replace OPT_BOOL with OPT__FORCE, which provides
-f for free, and makes 'remove' consistent with 'add' option
parsing (which also specifies the PARSE_OPT_NOCOMPLETE flag).
> Helped-by: Eric Sunshine <[email protected]>
> Signed-off-by: Stefan Beller <[email protected]>
The patch itself looks good. Thanks. With or without the above rewrite
or minor adjustment, this patch is:
Reviewed-by: Eric Sunshine <[email protected]>