]> git.ipfire.org Git - thirdparty/git.git/blame - builtin/interpret-trailers.c
interpret-trailers: add an option to show only existing trailers
[thirdparty/git.git] / builtin / interpret-trailers.c
CommitLineData
6634f054
CC
1/*
2 * Builtin "git interpret-trailers"
3 *
4 * Copyright (c) 2013, 2014 Christian Couder <chriscool@tuxfamily.org>
5 *
6 */
7
8#include "cache.h"
9#include "builtin.h"
10#include "parse-options.h"
11#include "string-list.h"
12#include "trailer.h"
13
14static const char * const git_interpret_trailers_usage[] = {
e1f89863 15 N_("git interpret-trailers [--in-place] [--trim-empty] [(--trailer <token>[(=|:)<value>])...] [<file>...]"),
6634f054
CC
16 NULL
17};
18
19int cmd_interpret_trailers(int argc, const char **argv, const char *prefix)
20{
8abc8980 21 struct process_trailer_options opts = PROCESS_TRAILER_OPTIONS_INIT;
7c4b1695 22 struct string_list trailers = STRING_LIST_INIT_NODUP;
6634f054
CC
23
24 struct option options[] = {
8abc8980
JK
25 OPT_BOOL(0, "in-place", &opts.in_place, N_("edit files in place")),
26 OPT_BOOL(0, "trim-empty", &opts.trim_empty, N_("trim empty trailers")),
56c493ed 27 OPT_BOOL(0, "only-trailers", &opts.only_trailers, N_("output only the trailers")),
fdbdb64f 28 OPT_BOOL(0, "only-input", &opts.only_input, N_("do not apply config rules")),
6634f054
CC
29 OPT_STRING_LIST(0, "trailer", &trailers, N_("trailer"),
30 N_("trailer(s) to add")),
31 OPT_END()
32 };
33
34 argc = parse_options(argc, argv, prefix, options,
35 git_interpret_trailers_usage, 0);
36
fdbdb64f
JK
37 if (opts.only_input && trailers.nr)
38 usage_msg_opt(
39 _("--trailer with --only-input does not make sense"),
40 git_interpret_trailers_usage,
41 options);
42
6634f054
CC
43 if (argc) {
44 int i;
45 for (i = 0; i < argc; i++)
8abc8980 46 process_trailers(argv[i], &opts, &trailers);
e1f89863 47 } else {
8abc8980 48 if (opts.in_place)
e1f89863 49 die(_("no input file given for in-place editing"));
8abc8980 50 process_trailers(NULL, &opts, &trailers);
e1f89863 51 }
6634f054
CC
52
53 string_list_clear(&trailers, 0);
54
55 return 0;
56}