cherry-pick/revert: reject --rerere-autoupdate when continuing
[git] / builtin / verify-tag.c
1 /*
2  * Builtin "git verify-tag"
3  *
4  * Copyright (c) 2007 Carlos Rica <jasampler@gmail.com>
5  *
6  * Based on git-verify-tag.sh
7  */
8 #include "cache.h"
9 #include "config.h"
10 #include "builtin.h"
11 #include "tag.h"
12 #include "run-command.h"
13 #include <signal.h>
14 #include "parse-options.h"
15 #include "gpg-interface.h"
16 #include "ref-filter.h"
17
18 static const char * const verify_tag_usage[] = {
19                 N_("git verify-tag [-v | --verbose] [--format=<format>] <tag>..."),
20                 NULL
21 };
22
23 static int git_verify_tag_config(const char *var, const char *value, void *cb)
24 {
25         int status = git_gpg_config(var, value, cb);
26         if (status)
27                 return status;
28         return git_default_config(var, value, cb);
29 }
30
31 int cmd_verify_tag(int argc, const char **argv, const char *prefix)
32 {
33         int i = 1, verbose = 0, had_error = 0;
34         unsigned flags = 0;
35         char *fmt_pretty = NULL;
36         const struct option verify_tag_options[] = {
37                 OPT__VERBOSE(&verbose, N_("print tag contents")),
38                 OPT_BIT(0, "raw", &flags, N_("print raw gpg status output"), GPG_VERIFY_RAW),
39                 OPT_STRING(  0 , "format", &fmt_pretty, N_("format"), N_("format to use for the output")),
40                 OPT_END()
41         };
42
43         git_config(git_verify_tag_config, NULL);
44
45         argc = parse_options(argc, argv, prefix, verify_tag_options,
46                              verify_tag_usage, PARSE_OPT_KEEP_ARGV0);
47         if (argc <= i)
48                 usage_with_options(verify_tag_usage, verify_tag_options);
49
50         if (verbose)
51                 flags |= GPG_VERIFY_VERBOSE;
52
53         if (fmt_pretty) {
54                 verify_ref_format(fmt_pretty);
55                 flags |= GPG_VERIFY_OMIT_STATUS;
56         }
57
58         while (i < argc) {
59                 unsigned char sha1[20];
60                 const char *name = argv[i++];
61                 if (get_sha1(name, sha1)) {
62                         had_error = !!error("tag '%s' not found.", name);
63                         continue;
64                 }
65
66                 if (gpg_verify_tag(sha1, name, flags)) {
67                         had_error = 1;
68                         continue;
69                 }
70
71                 if (fmt_pretty)
72                         pretty_print_ref(name, sha1, fmt_pretty);
73         }
74         return had_error;
75 }