git maintenance: avoid console window in scheduled tasks on Windows
[git.git] / builtin / verify-tag.c
blobc6019a0ad8cf79f92df9e1e443df373516f67db9
1 /*
2 * Builtin "git verify-tag"
4 * Copyright (c) 2007 Carlos Rica <jasampler@gmail.com>
6 * Based on git-verify-tag.sh
7 */
8 #include "cache.h"
9 #include "config.h"
10 #include "builtin.h"
11 #include "gettext.h"
12 #include "tag.h"
13 #include "run-command.h"
14 #include "object-name.h"
15 #include "parse-options.h"
16 #include "gpg-interface.h"
17 #include "ref-filter.h"
19 static const char * const verify_tag_usage[] = {
20 N_("git verify-tag [-v | --verbose] [--format=<format>] [--raw] <tag>..."),
21 NULL
24 int cmd_verify_tag(int argc, const char **argv, const char *prefix)
26 int i = 1, verbose = 0, had_error = 0;
27 unsigned flags = 0;
28 struct ref_format format = REF_FORMAT_INIT;
29 const struct option verify_tag_options[] = {
30 OPT__VERBOSE(&verbose, N_("print tag contents")),
31 OPT_BIT(0, "raw", &flags, N_("print raw gpg status output"), GPG_VERIFY_RAW),
32 OPT_STRING(0, "format", &format.format, N_("format"), N_("format to use for the output")),
33 OPT_END()
36 git_config(git_default_config, NULL);
38 argc = parse_options(argc, argv, prefix, verify_tag_options,
39 verify_tag_usage, PARSE_OPT_KEEP_ARGV0);
40 if (argc <= i)
41 usage_with_options(verify_tag_usage, verify_tag_options);
43 if (verbose)
44 flags |= GPG_VERIFY_VERBOSE;
46 if (format.format) {
47 if (verify_ref_format(&format))
48 usage_with_options(verify_tag_usage,
49 verify_tag_options);
50 flags |= GPG_VERIFY_OMIT_STATUS;
53 while (i < argc) {
54 struct object_id oid;
55 const char *name = argv[i++];
57 if (repo_get_oid(the_repository, name, &oid)) {
58 had_error = !!error("tag '%s' not found.", name);
59 continue;
62 if (gpg_verify_tag(&oid, name, flags)) {
63 had_error = 1;
64 continue;
67 if (format.format)
68 pretty_print_ref(name, &oid, &format);
70 return had_error;