Skip to content

Commit ff3c8c8

Browse files
SantiagoTorresgitster
authored andcommitted
builtin/verify-tag: add --format to verify-tag
Callers of verify-tag may want to cross-check the tagname from refs/tags with the tagname from the tag object header upon GPG verification. This is to avoid tag refs that point to an incorrect object. Add a --format parameter to git verify-tag to print the formatted tag object header in addition to or instead of the --verbose or --raw GPG verification output. Signed-off-by: Santiago Torres <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent 2111aa7 commit ff3c8c8

File tree

2 files changed

+20
-4
lines changed

2 files changed

+20
-4
lines changed

Documentation/git-verify-tag.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ git-verify-tag - Check the GPG signature of tags
88
SYNOPSIS
99
--------
1010
[verse]
11-
'git verify-tag' <tag>...
11+
'git verify-tag' [--format=<format>] <tag>...
1212

1313
DESCRIPTION
1414
-----------

builtin/verify-tag.c

Lines changed: 19 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,10 @@
1212
#include <signal.h>
1313
#include "parse-options.h"
1414
#include "gpg-interface.h"
15+
#include "ref-filter.h"
1516

1617
static const char * const verify_tag_usage[] = {
17-
N_("git verify-tag [-v | --verbose] <tag>..."),
18+
N_("git verify-tag [-v | --verbose] [--format=<format>] <tag>..."),
1819
NULL
1920
};
2021

@@ -30,9 +31,11 @@ int cmd_verify_tag(int argc, const char **argv, const char *prefix)
3031
{
3132
int i = 1, verbose = 0, had_error = 0;
3233
unsigned flags = 0;
34+
char *fmt_pretty = NULL;
3335
const struct option verify_tag_options[] = {
3436
OPT__VERBOSE(&verbose, N_("print tag contents")),
3537
OPT_BIT(0, "raw", &flags, N_("print raw gpg status output"), GPG_VERIFY_RAW),
38+
OPT_STRING( 0 , "format", &fmt_pretty, N_("format"), N_("format to use for the output")),
3639
OPT_END()
3740
};
3841

@@ -46,13 +49,26 @@ int cmd_verify_tag(int argc, const char **argv, const char *prefix)
4649
if (verbose)
4750
flags |= GPG_VERIFY_VERBOSE;
4851

52+
if (fmt_pretty) {
53+
verify_ref_format(fmt_pretty);
54+
flags |= GPG_VERIFY_OMIT_STATUS;
55+
}
56+
4957
while (i < argc) {
5058
unsigned char sha1[20];
5159
const char *name = argv[i++];
52-
if (get_sha1(name, sha1))
60+
if (get_sha1(name, sha1)) {
5361
had_error = !!error("tag '%s' not found.", name);
54-
else if (gpg_verify_tag(sha1, name, flags))
62+
continue;
63+
}
64+
65+
if (gpg_verify_tag(sha1, name, flags)) {
5566
had_error = 1;
67+
continue;
68+
}
69+
70+
if (fmt_pretty)
71+
pretty_print_ref(name, sha1, fmt_pretty);
5672
}
5773
return had_error;
5874
}

0 commit comments

Comments
 (0)