4 * Copyright (c) 2007 Kristian Høgsberg <krh@redhat.com>,
5 * Carlos Rica <jasampler@gmail.com>
6 * Based on git-tag.sh and mktag.c by Linus Torvalds.
13 #include "run-command.h"
14 #include "parse-options.h"
17 #include "gpg-interface.h"
18 #include "sha1-array.h"
20 #include "ref-filter.h"
22 static const char * const git_tag_usage
[] = {
23 N_("git tag [-a | -s | -u <key-id>] [-f] [-m <msg> | -F <file>] <tagname> [<head>]"),
24 N_("git tag -d <tagname>..."),
25 N_("git tag -l [-n[<num>]] [--contains <commit>] [--no-contains <commit>] [--points-at <object>]"
26 "\n\t\t[--format=<format>] [--[no-]merged [<commit>]] [<pattern>...]"),
27 N_("git tag -v [--format=<format>] <tagname>..."),
31 static unsigned int colopts
;
32 static int force_sign_annotate
;
34 static int list_tags(struct ref_filter
*filter
, struct ref_sorting
*sorting
, const char *format
)
36 struct ref_array array
;
40 memset(&array
, 0, sizeof(array
));
42 if (filter
->lines
== -1)
47 to_free
= xstrfmt("%s %%(contents:lines=%d)",
48 "%(align:15)%(refname:lstrip=2)%(end)",
52 format
= "%(refname:lstrip=2)";
55 verify_ref_format(format
);
56 filter
->with_commit_tag_algo
= 1;
57 filter_refs(&array
, filter
, FILTER_REFS_TAGS
);
58 ref_array_sort(sorting
, &array
);
60 for (i
= 0; i
< array
.nr
; i
++)
61 show_ref_array_item(array
.items
[i
], format
, 0);
62 ref_array_clear(&array
);
68 typedef int (*each_tag_name_fn
)(const char *name
, const char *ref
,
69 const unsigned char *sha1
, const void *cb_data
);
71 static int for_each_tag_name(const char **argv
, each_tag_name_fn fn
,
75 struct strbuf ref
= STRBUF_INIT
;
77 unsigned char sha1
[20];
79 for (p
= argv
; *p
; p
++) {
81 strbuf_addf(&ref
, "refs/tags/%s", *p
);
82 if (read_ref(ref
.buf
, sha1
)) {
83 error(_("tag '%s' not found."), *p
);
87 if (fn(*p
, ref
.buf
, sha1
, cb_data
))
94 static int delete_tag(const char *name
, const char *ref
,
95 const unsigned char *sha1
, const void *cb_data
)
97 if (delete_ref(NULL
, ref
, sha1
, 0))
99 printf(_("Deleted tag '%s' (was %s)\n"), name
, find_unique_abbrev(sha1
, DEFAULT_ABBREV
));
103 static int verify_tag(const char *name
, const char *ref
,
104 const unsigned char *sha1
, const void *cb_data
)
107 const char *fmt_pretty
= cb_data
;
108 flags
= GPG_VERIFY_VERBOSE
;
111 flags
= GPG_VERIFY_OMIT_STATUS
;
113 if (gpg_verify_tag(sha1
, name
, flags
))
117 pretty_print_ref(name
, sha1
, fmt_pretty
);
122 static int do_sign(struct strbuf
*buffer
)
124 return sign_buffer(buffer
, buffer
, get_signing_key());
127 static const char tag_template
[] =
128 N_("\nWrite a message for tag:\n %s\n"
129 "Lines starting with '%c' will be ignored.\n");
131 static const char tag_template_nocleanup
[] =
132 N_("\nWrite a message for tag:\n %s\n"
133 "Lines starting with '%c' will be kept; you may remove them"
134 " yourself if you want to.\n");
136 /* Parse arg given and add it the ref_sorting array */
137 static int parse_sorting_string(const char *arg
, struct ref_sorting
**sorting_tail
)
139 struct ref_sorting
*s
;
142 s
= xcalloc(1, sizeof(*s
));
143 s
->next
= *sorting_tail
;
150 if (skip_prefix(arg
, "version:", &arg
) ||
151 skip_prefix(arg
, "v:", &arg
))
155 s
->atom
= parse_ref_filter_atom(arg
, arg
+len
);
160 static int git_tag_config(const char *var
, const char *value
, void *cb
)
163 struct ref_sorting
**sorting_tail
= (struct ref_sorting
**)cb
;
165 if (!strcmp(var
, "tag.sort")) {
167 return config_error_nonbool(var
);
168 parse_sorting_string(value
, sorting_tail
);
172 status
= git_gpg_config(var
, value
, cb
);
175 if (!strcmp(var
, "tag.forcesignannotated")) {
176 force_sign_annotate
= git_config_bool(var
, value
);
180 if (starts_with(var
, "column."))
181 return git_column_config(var
, value
, "tag", &colopts
);
182 return git_default_config(var
, value
, cb
);
185 static void write_tag_body(int fd
, const unsigned char *sha1
)
188 enum object_type type
;
191 buf
= read_sha1_file(sha1
, &type
, &size
);
195 sp
= strstr(buf
, "\n\n");
197 if (!sp
|| !size
|| type
!= OBJ_TAG
) {
201 sp
+= 2; /* skip the 2 LFs */
202 write_or_die(fd
, sp
, parse_signature(sp
, buf
+ size
- sp
));
207 static int build_tag_object(struct strbuf
*buf
, int sign
, unsigned char *result
)
209 if (sign
&& do_sign(buf
) < 0)
210 return error(_("unable to sign the tag"));
211 if (write_sha1_file(buf
->buf
, buf
->len
, tag_type
, result
) < 0)
212 return error(_("unable to write tag file"));
216 struct create_tag_options
{
217 unsigned int message_given
:1;
226 static void create_tag(const unsigned char *object
, const char *tag
,
227 struct strbuf
*buf
, struct create_tag_options
*opt
,
228 unsigned char *prev
, unsigned char *result
)
230 enum object_type type
;
231 struct strbuf header
= STRBUF_INIT
;
234 type
= sha1_object_info(object
, NULL
);
235 if (type
<= OBJ_NONE
)
236 die(_("bad object type."));
246 git_committer_info(IDENT_STRICT
));
248 if (!opt
->message_given
) {
251 /* write the template message before editing: */
252 path
= git_pathdup("TAG_EDITMSG");
253 fd
= open(path
, O_CREAT
| O_TRUNC
| O_WRONLY
, 0600);
255 die_errno(_("could not create file '%s'"), path
);
257 if (!is_null_sha1(prev
)) {
258 write_tag_body(fd
, prev
);
260 struct strbuf buf
= STRBUF_INIT
;
261 strbuf_addch(&buf
, '\n');
262 if (opt
->cleanup_mode
== CLEANUP_ALL
)
263 strbuf_commented_addf(&buf
, _(tag_template
), tag
, comment_line_char
);
265 strbuf_commented_addf(&buf
, _(tag_template_nocleanup
), tag
, comment_line_char
);
266 write_or_die(fd
, buf
.buf
, buf
.len
);
267 strbuf_release(&buf
);
271 if (launch_editor(path
, buf
, NULL
)) {
273 _("Please supply the message using either -m or -F option.\n"));
278 if (opt
->cleanup_mode
!= CLEANUP_NONE
)
279 strbuf_stripspace(buf
, opt
->cleanup_mode
== CLEANUP_ALL
);
281 if (!opt
->message_given
&& !buf
->len
)
282 die(_("no tag message?"));
284 strbuf_insert(buf
, 0, header
.buf
, header
.len
);
285 strbuf_release(&header
);
287 if (build_tag_object(buf
, opt
->sign
, result
) < 0) {
289 fprintf(stderr
, _("The tag message has been left in %s\n"),
294 unlink_or_warn(path
);
299 static void create_reflog_msg(const unsigned char *sha1
, struct strbuf
*sb
)
301 enum object_type type
;
306 const char *subject_start
;
308 char *rla
= getenv("GIT_REFLOG_ACTION");
310 strbuf_addstr(sb
, rla
);
312 strbuf_addstr(sb
, _("tag: tagging "));
313 strbuf_add_unique_abbrev(sb
, sha1
, DEFAULT_ABBREV
);
316 strbuf_addstr(sb
, " (");
317 type
= sha1_object_info(sha1
, NULL
);
320 strbuf_addstr(sb
, _("object of unknown type"));
323 if ((buf
= read_sha1_file(sha1
, &type
, &size
)) != NULL
) {
324 subject_len
= find_commit_subject(buf
, &subject_start
);
325 strbuf_insert(sb
, sb
->len
, subject_start
, subject_len
);
327 strbuf_addstr(sb
, _("commit object"));
331 if ((c
= lookup_commit_reference(sha1
)) != NULL
)
332 strbuf_addf(sb
, ", %s", show_date(c
->date
, 0, DATE_MODE(SHORT
)));
335 strbuf_addstr(sb
, _("tree object"));
338 strbuf_addstr(sb
, _("blob object"));
341 strbuf_addstr(sb
, _("other tag object"));
344 strbuf_addch(sb
, ')');
352 static int parse_msg_arg(const struct option
*opt
, const char *arg
, int unset
)
354 struct msg_arg
*msg
= opt
->value
;
359 strbuf_addstr(&(msg
->buf
), "\n\n");
360 strbuf_addstr(&(msg
->buf
), arg
);
365 static int strbuf_check_tag_ref(struct strbuf
*sb
, const char *name
)
371 strbuf_addf(sb
, "refs/tags/%s", name
);
373 return check_refname_format(sb
->buf
, 0);
376 int cmd_tag(int argc
, const char **argv
, const char *prefix
)
378 struct strbuf buf
= STRBUF_INIT
;
379 struct strbuf ref
= STRBUF_INIT
;
380 struct strbuf reflog_msg
= STRBUF_INIT
;
381 unsigned char object
[20], prev
[20];
382 const char *object_ref
, *tag
;
383 struct create_tag_options opt
;
384 char *cleanup_arg
= NULL
;
385 int create_reflog
= 0;
386 int annotate
= 0, force
= 0;
387 int cmdmode
= 0, create_tag_object
= 0;
388 const char *msgfile
= NULL
, *keyid
= NULL
;
389 struct msg_arg msg
= { 0, STRBUF_INIT
};
390 struct ref_transaction
*transaction
;
391 struct strbuf err
= STRBUF_INIT
;
392 struct ref_filter filter
;
393 static struct ref_sorting
*sorting
= NULL
, **sorting_tail
= &sorting
;
394 const char *format
= NULL
;
396 struct option options
[] = {
397 OPT_CMDMODE('l', "list", &cmdmode
, N_("list tag names"), 'l'),
398 { OPTION_INTEGER
, 'n', NULL
, &filter
.lines
, N_("n"),
399 N_("print <n> lines of each tag message"),
400 PARSE_OPT_OPTARG
, NULL
, 1 },
401 OPT_CMDMODE('d', "delete", &cmdmode
, N_("delete tags"), 'd'),
402 OPT_CMDMODE('v', "verify", &cmdmode
, N_("verify tags"), 'v'),
404 OPT_GROUP(N_("Tag creation options")),
405 OPT_BOOL('a', "annotate", &annotate
,
406 N_("annotated tag, needs a message")),
407 OPT_CALLBACK('m', "message", &msg
, N_("message"),
408 N_("tag message"), parse_msg_arg
),
409 OPT_FILENAME('F', "file", &msgfile
, N_("read message from file")),
410 OPT_BOOL('s', "sign", &opt
.sign
, N_("annotated and GPG-signed tag")),
411 OPT_STRING(0, "cleanup", &cleanup_arg
, N_("mode"),
412 N_("how to strip spaces and #comments from message")),
413 OPT_STRING('u', "local-user", &keyid
, N_("key-id"),
414 N_("use another key to sign the tag")),
415 OPT__FORCE(&force
, N_("replace the tag if exists")),
416 OPT_BOOL(0, "create-reflog", &create_reflog
, N_("create a reflog")),
418 OPT_GROUP(N_("Tag listing options")),
419 OPT_COLUMN(0, "column", &colopts
, N_("show tag list in columns")),
420 OPT_CONTAINS(&filter
.with_commit
, N_("print only tags that contain the commit")),
421 OPT_NO_CONTAINS(&filter
.no_commit
, N_("print only tags that don't contain the commit")),
422 OPT_WITH(&filter
.with_commit
, N_("print only tags that contain the commit")),
423 OPT_WITHOUT(&filter
.no_commit
, N_("print only tags that don't contain the commit")),
424 OPT_MERGED(&filter
, N_("print only tags that are merged")),
425 OPT_NO_MERGED(&filter
, N_("print only tags that are not merged")),
426 OPT_CALLBACK(0 , "sort", sorting_tail
, N_("key"),
427 N_("field name to sort on"), &parse_opt_ref_sorting
),
429 OPTION_CALLBACK
, 0, "points-at", &filter
.points_at
, N_("object"),
430 N_("print only tags of the object"), PARSE_OPT_LASTARG_DEFAULT
,
431 parse_opt_object_name
, (intptr_t) "HEAD"
433 OPT_STRING( 0 , "format", &format
, N_("format"), N_("format to use for the output")),
434 OPT_BOOL('i', "ignore-case", &icase
, N_("sorting and filtering are case insensitive")),
438 setup_ref_filter_porcelain_msg();
440 git_config(git_tag_config
, sorting_tail
);
442 memset(&opt
, 0, sizeof(opt
));
443 memset(&filter
, 0, sizeof(filter
));
446 argc
= parse_options(argc
, argv
, prefix
, options
, git_tag_usage
, 0);
450 set_signing_key(keyid
);
452 create_tag_object
= (opt
.sign
|| annotate
|| msg
.given
|| msgfile
);
457 else if (filter
.with_commit
|| filter
.no_commit
||
458 filter
.points_at
.nr
|| filter
.merge_commit
||
463 if ((create_tag_object
|| force
) && (cmdmode
!= 0))
464 usage_with_options(git_tag_usage
, options
);
466 finalize_colopts(&colopts
, -1);
467 if (cmdmode
== 'l' && filter
.lines
!= -1) {
468 if (explicitly_enable_column(colopts
))
469 die(_("--column and -n are incompatible"));
473 sorting
= ref_default_sorting();
474 sorting
->ignore_case
= icase
;
475 filter
.ignore_case
= icase
;
476 if (cmdmode
== 'l') {
478 if (column_active(colopts
)) {
479 struct column_options copts
;
480 memset(&copts
, 0, sizeof(copts
));
482 run_column_filter(colopts
, &copts
);
484 filter
.name_patterns
= argv
;
485 ret
= list_tags(&filter
, sorting
, format
);
486 if (column_active(colopts
))
487 stop_column_filter();
490 if (filter
.lines
!= -1)
491 die(_("-n option is only allowed in list mode"));
492 if (filter
.with_commit
)
493 die(_("--contains option is only allowed in list mode"));
494 if (filter
.no_commit
)
495 die(_("--no-contains option is only allowed in list mode"));
496 if (filter
.points_at
.nr
)
497 die(_("--points-at option is only allowed in list mode"));
498 if (filter
.merge_commit
)
499 die(_("--merged and --no-merged options are only allowed in list mode"));
501 return for_each_tag_name(argv
, delete_tag
, NULL
);
502 if (cmdmode
== 'v') {
504 verify_ref_format(format
);
505 return for_each_tag_name(argv
, verify_tag
, format
);
508 if (msg
.given
|| msgfile
) {
509 if (msg
.given
&& msgfile
)
510 die(_("only one -F or -m option is allowed."));
512 strbuf_addbuf(&buf
, &(msg
.buf
));
514 if (!strcmp(msgfile
, "-")) {
515 if (strbuf_read(&buf
, 0, 1024) < 0)
516 die_errno(_("cannot read '%s'"), msgfile
);
518 if (strbuf_read_file(&buf
, msgfile
, 1024) < 0)
519 die_errno(_("could not open or read '%s'"),
527 object_ref
= argc
== 2 ? argv
[1] : "HEAD";
529 die(_("too many params"));
531 if (get_sha1(object_ref
, object
))
532 die(_("Failed to resolve '%s' as a valid ref."), object_ref
);
534 if (strbuf_check_tag_ref(&ref
, tag
))
535 die(_("'%s' is not a valid tag name."), tag
);
537 if (read_ref(ref
.buf
, prev
))
540 die(_("tag '%s' already exists"), tag
);
542 opt
.message_given
= msg
.given
|| msgfile
;
544 if (!cleanup_arg
|| !strcmp(cleanup_arg
, "strip"))
545 opt
.cleanup_mode
= CLEANUP_ALL
;
546 else if (!strcmp(cleanup_arg
, "verbatim"))
547 opt
.cleanup_mode
= CLEANUP_NONE
;
548 else if (!strcmp(cleanup_arg
, "whitespace"))
549 opt
.cleanup_mode
= CLEANUP_SPACE
;
551 die(_("Invalid cleanup mode %s"), cleanup_arg
);
553 create_reflog_msg(object
, &reflog_msg
);
555 if (create_tag_object
) {
556 if (force_sign_annotate
&& !annotate
)
558 create_tag(object
, tag
, &buf
, &opt
, prev
, object
);
561 transaction
= ref_transaction_begin(&err
);
563 ref_transaction_update(transaction
, ref
.buf
, object
, prev
,
564 create_reflog
? REF_FORCE_CREATE_REFLOG
: 0,
565 reflog_msg
.buf
, &err
) ||
566 ref_transaction_commit(transaction
, &err
))
568 ref_transaction_free(transaction
);
569 if (force
&& !is_null_sha1(prev
) && hashcmp(prev
, object
))
570 printf(_("Updated tag '%s' (was %s)\n"), tag
, find_unique_abbrev(prev
, DEFAULT_ABBREV
));
572 strbuf_release(&err
);
573 strbuf_release(&buf
);
574 strbuf_release(&ref
);
575 strbuf_release(&reflog_msg
);