Hi, Hariom verma <hariom18599@xxxxxxxxx> 于2021年6月5日周六 下午11:20写道: > > Hi, > > On Sat, Jun 5, 2021 at 2:43 PM ZheNing Hu via GitGitGadget > <gitgitgadget@xxxxxxxxx> wrote: > > > > From: ZheNing Hu <adlternative@xxxxxxxxx> > > > > --- a/builtin/branch.c > > +++ b/builtin/branch.c > > @@ -670,6 +674,7 @@ int cmd_branch(int argc, const char **argv, const char *prefix) > > N_("print only branches of the object"), parse_opt_object_name), > > OPT_BOOL('i', "ignore-case", &icase, N_("sorting and filtering are case insensitive")), > > OPT_STRING( 0 , "format", &format.format, N_("format"), N_("format to use for the output")), > > + OPT_STRING(0, "rest", &format.rest, N_("rest"), N_("specify %(rest) contents")), > > OPT_END(), > > }; > > > > Although it's not related to this patch. But I just noticed an unusual > extra space(s) before the first argument of `OPT_STRING()`. (above the > line you added) > Yeah, I noticed it too. > > --- a/builtin/for-each-ref.c > > +++ b/builtin/for-each-ref.c > > @@ -37,6 +37,7 @@ int cmd_for_each_ref(int argc, const char **argv, const char *prefix) > > > > OPT_GROUP(""), > > OPT_INTEGER( 0 , "count", &maxcount, N_("show only <n> matched refs")), > > + OPT_STRING( 0 , "rest", &format.rest, N_("rest"), N_("specify %(rest) contents")), > > OPT_STRING( 0 , "format", &format.format, N_("format"), N_("format to use for the output")), > > OPT__COLOR(&format.use_color, N_("respect format colors")), > > OPT_REF_SORT(sorting_tail), > > Here too in `OPT_INTEGER()` and `OPT_INTEGER()`. > > Also, I don't think these extra space(s) are intended. So you don't > need to imitate them. > Maybe... I find it's begin at c3428da8 (Make builtin-for-each-ref.c use parse-opts.) This is something from 2007. So It may be wrong to imitate its format. But this format fix work may be can put in good-first-issue. :) > > --- a/builtin/tag.c > > +++ b/builtin/tag.c > > @@ -481,6 +486,7 @@ int cmd_tag(int argc, const char **argv, const char *prefix) > > OPT_STRING( 0 , "format", &format.format, N_("format"), > > N_("format to use for the output")), > > OPT__COLOR(&format.use_color, N_("respect format colors")), > > + OPT_STRING(0, "rest", &format.rest, N_("rest"), N_("specify %(rest) contents")), > > OPT_BOOL('i', "ignore-case", &icase, N_("sorting and filtering are case insensitive")), > > OPT_END() > > }; > > Here too in the first line. > > Thanks, > Hariom Thanks. -- ZheNing Hu