Thread (11 messages) flat view 11 messages, 4 authors, 2021-06-06

Re: [PATCH 4/6] [GSOC] ref-filter: add %(rest) atom and --rest option

From: Hariom verma <hidden>
Date: 2021-06-05 15:20:51

Hi,

On Sat, Jun 5, 2021 at 2:43 PM ZheNing Hu via GitGitGadget
[off-list ref] wrote:
quoted hunk ↗ jump to hunk
From: ZheNing Hu <redacted>
--- 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)
quoted hunk ↗ jump to hunk
--- 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.
quoted hunk ↗ jump to hunk
--- 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
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help