зеркало из https://github.com/microsoft/git.git
parse-options.h: add macros for '--contains' option
Add a macro for using the '--contains' option in parse-options.h also include an optional '--with' option macro which performs the same action as '--contains'. Make tag.c and branch.c use this new macro. Mentored-by: Christian Couder <christian.couder@gmail.com> Mentored-by: Matthieu Moy <matthieu.moy@grenoble-inp.fr> Signed-off-by: Karthik Nayak <karthik.188@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Родитель
9d306b5a60
Коммит
f266c9163b
|
@ -828,18 +828,8 @@ int cmd_branch(int argc, const char **argv, const char *prefix)
|
|||
OPT__COLOR(&branch_use_color, N_("use colored output")),
|
||||
OPT_SET_INT('r', "remotes", &kinds, N_("act on remote-tracking branches"),
|
||||
REF_REMOTE_BRANCH),
|
||||
{
|
||||
OPTION_CALLBACK, 0, "contains", &with_commit, N_("commit"),
|
||||
N_("print only branches that contain the commit"),
|
||||
PARSE_OPT_LASTARG_DEFAULT,
|
||||
parse_opt_commits, (intptr_t)"HEAD",
|
||||
},
|
||||
{
|
||||
OPTION_CALLBACK, 0, "with", &with_commit, N_("commit"),
|
||||
N_("print only branches that contain the commit"),
|
||||
PARSE_OPT_HIDDEN | PARSE_OPT_LASTARG_DEFAULT,
|
||||
parse_opt_commits, (intptr_t) "HEAD",
|
||||
},
|
||||
OPT_CONTAINS(&with_commit, N_("print only branches that contain the commit")),
|
||||
OPT_WITH(&with_commit, N_("print only branches that contain the commit")),
|
||||
OPT__ABBREV(&abbrev),
|
||||
|
||||
OPT_GROUP(N_("Specific git-branch actions:")),
|
||||
|
|
|
@ -595,22 +595,12 @@ int cmd_tag(int argc, const char **argv, const char *prefix)
|
|||
|
||||
OPT_GROUP(N_("Tag listing options")),
|
||||
OPT_COLUMN(0, "column", &colopts, N_("show tag list in columns")),
|
||||
OPT_CONTAINS(&with_commit, N_("print only tags that contain the commit")),
|
||||
OPT_WITH(&with_commit, N_("print only tags that contain the commit")),
|
||||
{
|
||||
OPTION_CALLBACK, 0, "sort", &tag_sort, N_("type"), N_("sort tags"),
|
||||
PARSE_OPT_NONEG, parse_opt_sort
|
||||
},
|
||||
{
|
||||
OPTION_CALLBACK, 0, "contains", &with_commit, N_("commit"),
|
||||
N_("print only tags that contain the commit"),
|
||||
PARSE_OPT_LASTARG_DEFAULT,
|
||||
parse_opt_commits, (intptr_t)"HEAD",
|
||||
},
|
||||
{
|
||||
OPTION_CALLBACK, 0, "with", &with_commit, N_("commit"),
|
||||
N_("print only tags that contain the commit"),
|
||||
PARSE_OPT_HIDDEN | PARSE_OPT_LASTARG_DEFAULT,
|
||||
parse_opt_commits, (intptr_t)"HEAD",
|
||||
},
|
||||
{
|
||||
OPTION_CALLBACK, 0, "points-at", &points_at, N_("object"),
|
||||
N_("print only tags of the object"), 0, parse_opt_object_name
|
||||
|
|
|
@ -243,5 +243,12 @@ extern int parse_opt_noop_cb(const struct option *, const char *, int);
|
|||
OPT_COLOR_FLAG(0, "color", (var), (h))
|
||||
#define OPT_COLUMN(s, l, v, h) \
|
||||
{ OPTION_CALLBACK, (s), (l), (v), N_("style"), (h), PARSE_OPT_OPTARG, parseopt_column_callback }
|
||||
#define _OPT_CONTAINS_OR_WITH(name, variable, help, flag) \
|
||||
{ OPTION_CALLBACK, 0, name, (variable), N_("commit"), (help), \
|
||||
PARSE_OPT_LASTARG_DEFAULT | flag, \
|
||||
parse_opt_commits, (intptr_t) "HEAD" \
|
||||
}
|
||||
#define OPT_CONTAINS(v, h) _OPT_CONTAINS_OR_WITH("contains", v, h, 0)
|
||||
#define OPT_WITH(v, h) _OPT_CONTAINS_OR_WITH("with", v, h, PARSE_OPT_HIDDEN)
|
||||
|
||||
#endif
|
||||
|
|
Загрузка…
Ссылка в новой задаче