On Wed, Nov 18, 2009 at 8:19 PM, Junio C Hamano <gitster@xxxxxxxxx> wrote: > Stephen Boyd <bebarino@xxxxxxxxx> writes: > >> Junio C Hamano wrote: >>> >>> @@ -24,7 +24,7 @@ static int chomp_prefix; >>> static const char *ls_tree_prefix; >>> static const char * const ls_tree_usage[] = { >>> - "git ls-tree [-d] [-r] [-t] [-l | --long] [-z] [--name-only] [--name-status] [--full-name] [--full-tree] [--abbrev[=<n>]] <tree-ish> [path...]", >>> + "git ls-tree <options> <tree-ish> [path...]", >>> NULL >>> }; >>> >> >> Is it [<options>] or [<options>...] or <options> or even >> <options>... though? > > Output from "git grep -e '<option' -- '*.c'" indicates that it > should be "[<options>]"; thanks for spotting. $ git grep -e '<option' -- '*.c' | wc -l 4 $ git grep -e '\[options' -- '*.c' | wc -l 42 $ git grep -e '\[<options' -- '*.c' | wc -l 2 Shouldn't be just "[options]"? -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html