Thiago Farina wrote: > They follow the pattern of file name: > File name pattern: builtin-command-name.c > Usage string pattern: builtin_command_name_usage > > Signed-off-by: Thiago Farina <tfransosi@xxxxxxxxx> > --- > diff --git a/builtin-blame.c b/builtin-blame.c > index 7512773..4adae84 100644 > --- a/builtin-blame.c > +++ b/builtin-blame.c > @@ -21,10 +21,11 @@ > #include "parse-options.h" > #include "utf8.h" > > -static char blame_usage[] = "git blame [options] [rev-opts] [rev] [--] file"; > +static char builtin_blame_usage[] = Should this one also use 'const'? > +"git blame [options] [rev-opts] [rev] [--] file"; > > static const char *blame_opt_usage[] = { > - blame_usage, > + builtin_blame_usage, > "", > "[rev-opts] are documented in git-rev-list(1)", > NULL > diff --git a/builtin-count-objects.c b/builtin-count-objects.c > index 1b0b6c8..fbe0972 100644 > --- a/builtin-count-objects.c > +++ b/builtin-count-objects.c > @@ -65,7 +65,7 @@ static void count_objects(DIR *d, char *path, int len, int verbose, > } > } > > -static char const * const count_objects_usage[] = { > +static char const * const builtin_count_objects_usage[] = { This one is different from the others. I assume 'char const *' is the same as 'const char *', though I'm used to seeing the latter form. If we're going for consistency, maybe this should be changed too. Ultra minor nit-pick. I noticed it, so I mentioned it, but its your choice. > "git count-objects [-v]", > NULL > }; > diff --git a/builtin-for-each-ref.c b/builtin-for-each-ref.c > index a5a83f1..715d378 100644 > --- a/builtin-for-each-ref.c > +++ b/builtin-for-each-ref.c > @@ -881,7 +881,7 @@ static int opt_parse_sort(const struct option *opt, const char *arg, int unset) > return 0; > } > > -static char const * const for_each_ref_usage[] = { > +static char const * const builtin_for_each_ref_usage[] = { ditto > "git for-each-ref [options] [<pattern>]", > NULL > }; > diff --git a/builtin-fsck.c b/builtin-fsck.c > index c58b0e3..0857357 100644 > --- a/builtin-fsck.c > +++ b/builtin-fsck.c > @@ -564,7 +564,7 @@ static int fsck_cache_tree(struct cache_tree *it) > return err; > } > > -static char const * const fsck_usage[] = { > +static char const * const builtin_fsck_usage[] = { ditto > "git fsck [options] [<object>...]", > NULL > }; -- 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