2 * Builtin "git verify-tag"
4 * Copyright (c) 2007 Carlos Rica <jasampler@gmail.com>
6 * Based on git-verify-tag.sh
12 #include "run-command.h"
13 #include "parse-options.h"
14 #include "gpg-interface.h"
15 #include "ref-filter.h"
17 static const char * const verify_tag_usage[] = {
18 N_("git verify-tag [-v | --verbose] [--format=<format>] <tag>..."),
22 static int git_verify_tag_config(const char *var, const char *value, void *cb)
24 int status = git_gpg_config(var, value, cb);
27 return git_default_config(var, value, cb);
30 int cmd_verify_tag(int argc, const char **argv, const char *prefix)
32 int i = 1, verbose = 0, had_error = 0;
34 struct ref_format format = REF_FORMAT_INIT;
35 const struct option verify_tag_options[] = {
36 OPT__VERBOSE(&verbose, N_("print tag contents")),
37 OPT_BIT(0, "raw", &flags, N_("print raw gpg status output"), GPG_VERIFY_RAW),
38 OPT_STRING(0, "format", &format.format, N_("format"), N_("format to use for the output")),
42 git_config(git_verify_tag_config, NULL);
44 argc = parse_options(argc, argv, prefix, verify_tag_options,
45 verify_tag_usage, PARSE_OPT_KEEP_ARGV0);
47 usage_with_options(verify_tag_usage, verify_tag_options);
50 flags |= GPG_VERIFY_VERBOSE;
53 if (verify_ref_format(&format))
54 usage_with_options(verify_tag_usage,
56 flags |= GPG_VERIFY_OMIT_STATUS;
61 const char *name = argv[i++];
63 if (get_oid(name, &oid)) {
64 had_error = !!error("tag '%s' not found.", name);
68 if (gpg_verify_tag(&oid, name, flags)) {
74 pretty_print_ref(name, &oid, &format);