]> git.ipfire.org Git - thirdparty/git.git/blame - builtin/tag.c
Merge branch 'es/add-doc-list-short-form-of-all-in-synopsis'
[thirdparty/git.git] / builtin / tag.c
CommitLineData
62e09ce9
CR
1/*
2 * Builtin "git tag"
3 *
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.
7 */
8
bc5c5ec0 9#include "builtin.h"
6c6ddf92 10#include "advice.h"
b2141fc1 11#include "config.h"
4e120823 12#include "editor.h"
7ee24e18 13#include "environment.h"
f394e093 14#include "gettext.h"
41771fa4 15#include "hex.h"
62e09ce9 16#include "refs.h"
dabab1d6 17#include "object-name.h"
a034e910 18#include "object-store-ll.h"
c339932b 19#include "path.h"
62e09ce9
CR
20#include "tag.h"
21#include "run-command.h"
39686585 22#include "parse-options.h"
ffc4b801
JK
23#include "diff.h"
24#include "revision.h"
2f47eae2 25#include "gpg-interface.h"
fe299ec5 26#include "oid-array.h"
d96e3c15 27#include "column.h"
ac4cc866 28#include "ref-filter.h"
88c7b4c3 29#include "date.h"
d48be35c 30#include "write-or-die.h"
39686585
CR
31
32static const char * const git_tag_usage[] = {
8c9e292d
ÆAB
33 N_("git tag [-a | -s | -u <key-id>] [-f] [-m <msg> | -F <file>] [-e]\n"
34 " <tagname> [<commit> | <object>]"),
c88bba18 35 N_("git tag -d <tagname>..."),
8c9e292d
ÆAB
36 N_("git tag [-n[<num>]] -l [--contains <commit>] [--no-contains <commit>]\n"
37 " [--points-at <object>] [--column[=<options>] | --no-column]\n"
38 " [--create-reflog] [--sort=<key>] [--format=<format>]\n"
39 " [--merged <commit>] [--no-merged <commit>] [<pattern>...]"),
07d347cf 40 N_("git tag -v [--format=<format>] <tagname>..."),
39686585
CR
41 NULL
42};
62e09ce9 43
d96e3c15 44static unsigned int colopts;
61c2fe0c 45static int force_sign_annotate;
1c6b565f 46static int config_sign_tag = -1; /* unspecified */
ae7706b9 47
4a68e36d
JK
48static int list_tags(struct ref_filter *filter, struct ref_sorting *sorting,
49 struct ref_format *format)
ca516999 50{
df094741 51 char *to_free = NULL;
32c35cfb 52
ac4cc866
KN
53 if (filter->lines == -1)
54 filter->lines = 0;
ae7706b9 55
4a68e36d 56 if (!format->format) {
df094741
KN
57 if (filter->lines) {
58 to_free = xstrfmt("%s %%(contents:lines=%d)",
17938f17 59 "%(align:15)%(refname:lstrip=2)%(end)",
df094741 60 filter->lines);
4a68e36d 61 format->format = to_free;
df094741 62 } else
4a68e36d 63 format->format = "%(refname:lstrip=2)";
62e09ce9
CR
64 }
65
2eda0102
JK
66 if (verify_ref_format(format))
67 die(_("unable to parse format string"));
008ed7df 68 filter->with_commit_tag_algo = 1;
e7574b0c 69 filter_and_format_refs(filter, FILTER_REFS_TAGS, sorting, format);
844c3f0b 70
b7cc53e9 71 free(to_free);
9ef176b5 72
62e09ce9
CR
73 return 0;
74}
75
e317cfaf 76typedef int (*each_tag_name_fn)(const char *name, const char *ref,
81989077 77 const struct object_id *oid, void *cb_data);
62e09ce9 78
07d347cf 79static int for_each_tag_name(const char **argv, each_tag_name_fn fn,
81989077 80 void *cb_data)
62e09ce9
CR
81{
82 const char **p;
7f897b6f 83 struct strbuf ref = STRBUF_INIT;
62e09ce9 84 int had_error = 0;
7422ab50 85 struct object_id oid;
62e09ce9
CR
86
87 for (p = argv; *p; p++) {
7f897b6f
JK
88 strbuf_reset(&ref);
89 strbuf_addf(&ref, "refs/tags/%s", *p);
34c290a6 90 if (read_ref(ref.buf, &oid)) {
d08ebf99 91 error(_("tag '%s' not found."), *p);
62e09ce9
CR
92 had_error = 1;
93 continue;
94 }
7422ab50 95 if (fn(*p, ref.buf, &oid, cb_data))
62e09ce9
CR
96 had_error = 1;
97 }
7f897b6f 98 strbuf_release(&ref);
62e09ce9
CR
99 return had_error;
100}
101
cc2f8101 102static int collect_tags(const char *name UNUSED, const char *ref,
81989077 103 const struct object_id *oid, void *cb_data)
62e09ce9 104{
81989077
PH
105 struct string_list *ref_list = cb_data;
106
107 string_list_append(ref_list, ref);
108 ref_list->items[ref_list->nr - 1].util = oiddup(oid);
62e09ce9
CR
109 return 0;
110}
111
81989077
PH
112static int delete_tags(const char **argv)
113{
114 int result;
115 struct string_list refs_to_delete = STRING_LIST_INIT_DUP;
116 struct string_list_item *item;
117
118 result = for_each_tag_name(argv, collect_tags, (void *)&refs_to_delete);
119 if (delete_refs(NULL, &refs_to_delete, REF_NO_DEREF))
120 result = 1;
121
122 for_each_string_list_item(item, &refs_to_delete) {
123 const char *name = item->string;
124 struct object_id *oid = item->util;
125 if (!ref_exists(name))
126 printf(_("Deleted tag '%s' (was %s)\n"),
127 item->string + 10,
d850b7a5 128 repo_find_unique_abbrev(the_repository, oid, DEFAULT_ABBREV));
81989077
PH
129
130 free(oid);
131 }
132 string_list_clear(&refs_to_delete, 0);
133 return result;
134}
135
cc2f8101 136static int verify_tag(const char *name, const char *ref UNUSED,
81989077 137 const struct object_id *oid, void *cb_data)
62e09ce9 138{
07d347cf 139 int flags;
e85fcb35 140 struct ref_format *format = cb_data;
07d347cf
LP
141 flags = GPG_VERIFY_VERBOSE;
142
4a68e36d 143 if (format->format)
07d347cf
LP
144 flags = GPG_VERIFY_OMIT_STATUS;
145
84571760 146 if (gpg_verify_tag(oid, name, flags))
07d347cf
LP
147 return -1;
148
4a68e36d 149 if (format->format)
53df97a2 150 pretty_print_ref(name, oid, format);
07d347cf
LP
151
152 return 0;
62e09ce9
CR
153}
154
fd17f5b5 155static int do_sign(struct strbuf *buffer)
62e09ce9 156{
2f47eae2 157 return sign_buffer(buffer, buffer, get_signing_key());
62e09ce9
CR
158}
159
160static const char tag_template[] =
d78f340e 161 N_("\nWrite a message for tag:\n %s\n"
eff80a9f 162 "Lines starting with '%c' will be ignored.\n");
d3e05983
KS
163
164static const char tag_template_nocleanup[] =
d78f340e 165 N_("\nWrite a message for tag:\n %s\n"
eff80a9f
JH
166 "Lines starting with '%c' will be kept; you may remove them"
167 " yourself if you want to.\n");
62e09ce9 168
a4e7e317
GC
169static int git_tag_config(const char *var, const char *value,
170 const struct config_context *ctx, void *cb)
62e09ce9 171{
1c6b565f
TM
172 if (!strcmp(var, "tag.gpgsign")) {
173 config_sign_tag = git_config_bool(var, value);
174 return 0;
175 }
176
b150794d
JK
177 if (!strcmp(var, "tag.sort")) {
178 if (!value)
179 return config_error_nonbool(var);
98e7ab6d 180 string_list_append(cb, value);
b150794d
JK
181 return 0;
182 }
183
61c2fe0c
LA
184 if (!strcmp(var, "tag.forcesignannotated")) {
185 force_sign_annotate = git_config_bool(var, value);
186 return 0;
187 }
188
59556548 189 if (starts_with(var, "column."))
d96e3c15 190 return git_column_config(var, value, "tag", &colopts);
97eeeea2
GC
191
192 if (git_color_config(var, value, cb) < 0)
193 return -1;
194
a4e7e317 195 return git_default_config(var, value, ctx, cb);
62e09ce9
CR
196}
197
7422ab50 198static void write_tag_body(int fd, const struct object_id *oid)
bab8118a
MH
199{
200 unsigned long size;
201 enum object_type type;
482c1191 202 char *buf, *sp, *orig;
203 struct strbuf payload = STRBUF_INIT;
204 struct strbuf signature = STRBUF_INIT;
bab8118a 205
bc726bd0 206 orig = buf = repo_read_object_file(the_repository, oid, &type, &size);
bab8118a
MH
207 if (!buf)
208 return;
482c1191 209 if (parse_signature(buf, size, &payload, &signature)) {
210 buf = payload.buf;
211 size = payload.len;
212 }
bab8118a
MH
213 /* skip header */
214 sp = strstr(buf, "\n\n");
215
216 if (!sp || !size || type != OBJ_TAG) {
217 free(buf);
218 return;
219 }
220 sp += 2; /* skip the 2 LFs */
482c1191 221 write_or_die(fd, sp, buf + size - sp);
bab8118a 222
482c1191 223 free(orig);
224 strbuf_release(&payload);
225 strbuf_release(&signature);
bab8118a
MH
226}
227
7422ab50 228static int build_tag_object(struct strbuf *buf, int sign, struct object_id *result)
3927bbe9
JK
229{
230 if (sign && do_sign(buf) < 0)
d08ebf99 231 return error(_("unable to sign the tag"));
c80d226a 232 if (write_object_file(buf->buf, buf->len, OBJ_TAG, result) < 0)
d08ebf99 233 return error(_("unable to write tag file"));
3927bbe9
JK
234 return 0;
235}
236
d3e05983
KS
237struct create_tag_options {
238 unsigned int message_given:1;
9eed6e40 239 unsigned int use_editor:1;
d3e05983
KS
240 unsigned int sign;
241 enum {
242 CLEANUP_NONE,
243 CLEANUP_SPACE,
244 CLEANUP_ALL
245 } cleanup_mode;
246};
247
eea9c1e7 248static const char message_advice_nested_tag[] =
a54b2ab3 249 N_("You have created a nested tag. The object referred to by your new tag is\n"
eea9c1e7
DL
250 "already a tag. If you meant to tag the object that it points to, use:\n"
251 "\n"
252 "\tgit tag -f %s %s^{}");
253
254static void create_tag(const struct object_id *object, const char *object_ref,
255 const char *tag,
d3e05983 256 struct strbuf *buf, struct create_tag_options *opt,
08c12ec1 257 struct object_id *prev, struct object_id *result, char *path)
62e09ce9
CR
258{
259 enum object_type type;
b0ceab98 260 struct strbuf header = STRBUF_INIT;
62e09ce9 261
0df8e965 262 type = oid_object_info(the_repository, object, NULL);
e317cfaf 263 if (type <= OBJ_NONE)
01dc801a 264 die(_("bad object type."));
62e09ce9 265
f665d63a
HW
266 if (type == OBJ_TAG)
267 advise_if_enabled(ADVICE_NESTED_TAG, _(message_advice_nested_tag),
268 tag, object_ref);
62e09ce9 269
b0ceab98
JK
270 strbuf_addf(&header,
271 "object %s\n"
272 "type %s\n"
273 "tag %s\n"
274 "tagger %s\n\n",
7422ab50 275 oid_to_hex(object),
debca9d2 276 type_name(type),
b0ceab98
JK
277 tag,
278 git_committer_info(IDENT_STRICT));
62e09ce9 279
9eed6e40 280 if (!opt->message_given || opt->use_editor) {
62e09ce9
CR
281 int fd;
282
283 /* write the template message before editing: */
66e905b7 284 fd = xopen(path, O_CREAT | O_TRUNC | O_WRONLY, 0600);
bab8118a 285
9eed6e40
NMC
286 if (opt->message_given) {
287 write_or_die(fd, buf->buf, buf->len);
288 strbuf_reset(buf);
289 } else if (!is_null_oid(prev)) {
bab8118a 290 write_tag_body(fd, prev);
eff80a9f
JH
291 } else {
292 struct strbuf buf = STRBUF_INIT;
293 strbuf_addch(&buf, '\n');
294 if (opt->cleanup_mode == CLEANUP_ALL)
787cb8a4
CW
295 strbuf_commented_addf(&buf, comment_line_char,
296 _(tag_template), tag, comment_line_char);
eff80a9f 297 else
787cb8a4
CW
298 strbuf_commented_addf(&buf, comment_line_char,
299 _(tag_template_nocleanup), tag, comment_line_char);
eff80a9f
JH
300 write_or_die(fd, buf.buf, buf.len);
301 strbuf_release(&buf);
302 }
62e09ce9
CR
303 close(fd);
304
7198203a
SB
305 if (launch_editor(path, buf, NULL)) {
306 fprintf(stderr,
d08ebf99 307 _("Please supply the message using either -m or -F option.\n"));
7198203a
SB
308 exit(1);
309 }
62e09ce9 310 }
62e09ce9 311
d3e05983 312 if (opt->cleanup_mode != CLEANUP_NONE)
787cb8a4
CW
313 strbuf_stripspace(buf,
314 opt->cleanup_mode == CLEANUP_ALL ? comment_line_char : '\0');
62e09ce9 315
d3e05983 316 if (!opt->message_given && !buf->len)
d08ebf99 317 die(_("no tag message?"));
62e09ce9 318
b0ceab98
JK
319 strbuf_insert(buf, 0, header.buf, header.len);
320 strbuf_release(&header);
62e09ce9 321
d3e05983 322 if (build_tag_object(buf, opt->sign, result) < 0) {
3927bbe9 323 if (path)
d08ebf99 324 fprintf(stderr, _("The tag message has been left in %s\n"),
3927bbe9
JK
325 path);
326 exit(128);
327 }
62e09ce9
CR
328}
329
7422ab50 330static void create_reflog_msg(const struct object_id *oid, struct strbuf *sb)
df8512ed
CW
331{
332 enum object_type type;
333 struct commit *c;
334 char *buf;
335 unsigned long size;
336 int subject_len = 0;
337 const char *subject_start;
338
339 char *rla = getenv("GIT_REFLOG_ACTION");
340 if (rla) {
341 strbuf_addstr(sb, rla);
342 } else {
c3027be9 343 strbuf_addstr(sb, "tag: tagging ");
30e677e0 344 strbuf_add_unique_abbrev(sb, oid, DEFAULT_ABBREV);
df8512ed
CW
345 }
346
347 strbuf_addstr(sb, " (");
0df8e965 348 type = oid_object_info(the_repository, oid, NULL);
df8512ed
CW
349 switch (type) {
350 default:
c3027be9 351 strbuf_addstr(sb, "object of unknown type");
df8512ed
CW
352 break;
353 case OBJ_COMMIT:
bc726bd0 354 if ((buf = repo_read_object_file(the_repository, oid, &type, &size))) {
df8512ed
CW
355 subject_len = find_commit_subject(buf, &subject_start);
356 strbuf_insert(sb, sb->len, subject_start, subject_len);
357 } else {
c3027be9 358 strbuf_addstr(sb, "commit object");
df8512ed
CW
359 }
360 free(buf);
361
afe8a907 362 if ((c = lookup_commit_reference(the_repository, oid)))
df8512ed
CW
363 strbuf_addf(sb, ", %s", show_date(c->date, 0, DATE_MODE(SHORT)));
364 break;
365 case OBJ_TREE:
c3027be9 366 strbuf_addstr(sb, "tree object");
df8512ed
CW
367 break;
368 case OBJ_BLOB:
c3027be9 369 strbuf_addstr(sb, "blob object");
df8512ed
CW
370 break;
371 case OBJ_TAG:
c3027be9 372 strbuf_addstr(sb, "other tag object");
df8512ed
CW
373 break;
374 }
375 strbuf_addch(sb, ')');
376}
377
bd46c9a9
JH
378struct msg_arg {
379 int given;
380 struct strbuf buf;
381};
382
383static int parse_msg_arg(const struct option *opt, const char *arg, int unset)
384{
385 struct msg_arg *msg = opt->value;
386
517fe807
JK
387 BUG_ON_OPT_NEG(unset);
388
bd46c9a9
JH
389 if (!arg)
390 return -1;
391 if (msg->buf.len)
392 strbuf_addstr(&(msg->buf), "\n\n");
393 strbuf_addstr(&(msg->buf), arg);
394 msg->given = 1;
395 return 0;
396}
397
4f0accd6
MS
398static int strbuf_check_tag_ref(struct strbuf *sb, const char *name)
399{
400 if (name[0] == '-')
8d9c5010 401 return -1;
4f0accd6
MS
402
403 strbuf_reset(sb);
404 strbuf_addf(sb, "refs/tags/%s", name);
405
8d9c5010 406 return check_refname_format(sb->buf, 0);
4f0accd6
MS
407}
408
62e09ce9
CR
409int cmd_tag(int argc, const char **argv, const char *prefix)
410{
f285a2d7 411 struct strbuf buf = STRBUF_INIT;
4f0accd6 412 struct strbuf ref = STRBUF_INIT;
df8512ed 413 struct strbuf reflog_msg = STRBUF_INIT;
7422ab50 414 struct object_id object, prev;
62e09ce9 415 const char *object_ref, *tag;
d3e05983
KS
416 struct create_tag_options opt;
417 char *cleanup_arg = NULL;
144c76fa 418 int create_reflog = 0;
ac4cc866 419 int annotate = 0, force = 0;
61c2fe0c 420 int cmdmode = 0, create_tag_object = 0;
7ce4088a
JK
421 char *msgfile = NULL;
422 const char *keyid = NULL;
37766b61 423 struct msg_arg msg = { .buf = STRBUF_INIT };
e5074bfe
RS
424 struct ref_transaction *transaction;
425 struct strbuf err = STRBUF_INIT;
b9f7daa6 426 struct ref_filter filter = REF_FILTER_INIT;
98e7ab6d
JH
427 struct ref_sorting *sorting;
428 struct string_list sorting_options = STRING_LIST_INIT_DUP;
4a68e36d 429 struct ref_format format = REF_FORMAT_INIT;
3bb16a8b 430 int icase = 0;
9eed6e40 431 int edit_flag = 0;
39686585 432 struct option options[] = {
e6b722db 433 OPT_CMDMODE('l', "list", &cmdmode, N_("list tag names"), 'l'),
ac4cc866 434 { OPTION_INTEGER, 'n', NULL, &filter.lines, N_("n"),
c88bba18 435 N_("print <n> lines of each tag message"),
39686585 436 PARSE_OPT_OPTARG, NULL, 1 },
e6b722db
JH
437 OPT_CMDMODE('d', "delete", &cmdmode, N_("delete tags"), 'd'),
438 OPT_CMDMODE('v', "verify", &cmdmode, N_("verify tags"), 'v'),
39686585 439
c88bba18 440 OPT_GROUP(N_("Tag creation options")),
d5d09d47 441 OPT_BOOL('a', "annotate", &annotate,
c88bba18 442 N_("annotated tag, needs a message")),
203c8533
DL
443 OPT_CALLBACK_F('m', "message", &msg, N_("message"),
444 N_("tag message"), PARSE_OPT_NONEG, parse_msg_arg),
c88bba18 445 OPT_FILENAME('F', "file", &msgfile, N_("read message from file")),
9eed6e40 446 OPT_BOOL('e', "edit", &edit_flag, N_("force edit of tag message")),
d5d09d47 447 OPT_BOOL('s', "sign", &opt.sign, N_("annotated and GPG-signed tag")),
ca04dc96 448 OPT_CLEANUP(&cleanup_arg),
e703d711 449 OPT_STRING('u', "local-user", &keyid, N_("key-id"),
c88bba18 450 N_("use another key to sign the tag")),
1224781d 451 OPT__FORCE(&force, N_("replace the tag if exists"), 0),
98c32bd8 452 OPT_BOOL(0, "create-reflog", &create_reflog, N_("create a reflog")),
dd059c6c
JK
453
454 OPT_GROUP(N_("Tag listing options")),
c88bba18 455 OPT_COLUMN(0, "column", &colopts, N_("show tag list in columns")),
ac4cc866 456 OPT_CONTAINS(&filter.with_commit, N_("print only tags that contain the commit")),
ac3f5a34 457 OPT_NO_CONTAINS(&filter.no_commit, N_("print only tags that don't contain the commit")),
ac4cc866 458 OPT_WITH(&filter.with_commit, N_("print only tags that contain the commit")),
ac3f5a34 459 OPT_WITHOUT(&filter.no_commit, N_("print only tags that don't contain the commit")),
5242860f
KN
460 OPT_MERGED(&filter, N_("print only tags that are merged")),
461 OPT_NO_MERGED(&filter, N_("print only tags that are not merged")),
9d4fcfe1 462 OPT_BOOL(0, "omit-empty", &format.array_opts.omit_empty,
aabfdc95 463 N_("do not output a newline after empty formatted refs")),
98e7ab6d 464 OPT_REF_SORT(&sorting_options),
32c35cfb 465 {
ac4cc866 466 OPTION_CALLBACK, 0, "points-at", &filter.points_at, N_("object"),
1e0c3b68
ÆAB
467 N_("print only tags of the object"), PARSE_OPT_LASTARG_DEFAULT,
468 parse_opt_object_name, (intptr_t) "HEAD"
ae7706b9 469 },
4a68e36d
JK
470 OPT_STRING( 0 , "format", &format.format, N_("format"),
471 N_("format to use for the output")),
0c88bf50 472 OPT__COLOR(&format.use_color, N_("respect format colors")),
3bb16a8b 473 OPT_BOOL('i', "ignore-case", &icase, N_("sorting and filtering are case insensitive")),
39686585
CR
474 OPT_END()
475 };
37766b61 476 int ret = 0;
408c5c5c 477 const char *only_in_list = NULL;
08c12ec1 478 char *path = NULL;
39686585 479
56b43607
KN
480 setup_ref_filter_porcelain_msg();
481
56d26ade
VD
482 /*
483 * Try to set sort keys from config. If config does not set any,
484 * fall back on default (refname) sorting.
485 */
98e7ab6d 486 git_config(git_tag_config, &sorting_options);
56d26ade
VD
487 if (!sorting_options.nr)
488 string_list_append(&sorting_options, "refname");
62e09ce9 489
d3e05983 490 memset(&opt, 0, sizeof(opt));
ac4cc866 491 filter.lines = -1;
1c6b565f 492 opt.sign = -1;
d3e05983 493
37782920 494 argc = parse_options(argc, argv, prefix, options, git_tag_usage, 0);
62e09ce9 495
6a338149
ÆAB
496 if (!cmdmode) {
497 if (argc == 0)
498 cmdmode = 'l';
ac3f5a34 499 else if (filter.with_commit || filter.no_commit ||
21bf9339
AL
500 filter.reachable_from || filter.unreachable_from ||
501 filter.points_at.nr || filter.lines != -1)
6a338149
ÆAB
502 cmdmode = 'l';
503 }
c1a41b9d 504
de121ffe 505 if (cmdmode == 'l')
ff1e7248 506 setup_auto_pager("tag", 1);
de121ffe 507
1c6b565f
TM
508 if (opt.sign == -1)
509 opt.sign = cmdmode ? 0 : config_sign_tag > 0;
510
511 if (keyid) {
512 opt.sign = 1;
513 set_signing_key(keyid);
514 }
515 create_tag_object = (opt.sign || annotate || msg.given || msgfile);
516
61c2fe0c 517 if ((create_tag_object || force) && (cmdmode != 0))
6fa8342b
ST
518 usage_with_options(git_tag_usage, options);
519
d96e3c15 520 finalize_colopts(&colopts, -1);
ac4cc866 521 if (cmdmode == 'l' && filter.lines != -1) {
d96e3c15 522 if (explicitly_enable_column(colopts))
12909b6b 523 die(_("options '%s' and '%s' cannot be used together"), "--column", "-n");
d96e3c15
NTND
524 colopts = 0;
525 }
98e7ab6d 526 sorting = ref_sorting_options(&sorting_options);
7c269a7b 527 ref_sorting_set_sort_flags_all(sorting, REF_SORTING_ICASE, icase);
3bb16a8b 528 filter.ignore_case = icase;
e6b722db 529 if (cmdmode == 'l') {
d96e3c15
NTND
530 if (column_active(colopts)) {
531 struct column_options copts;
532 memset(&copts, 0, sizeof(copts));
533 copts.padding = 2;
534 run_column_filter(colopts, &copts);
535 }
ac4cc866 536 filter.name_patterns = argv;
4a68e36d 537 ret = list_tags(&filter, sorting, &format);
d96e3c15
NTND
538 if (column_active(colopts))
539 stop_column_filter();
37766b61 540 goto cleanup;
d96e3c15 541 }
ac4cc866 542 if (filter.lines != -1)
408c5c5c
JNA
543 only_in_list = "-n";
544 else if (filter.with_commit)
545 only_in_list = "--contains";
546 else if (filter.no_commit)
547 only_in_list = "--no-contains";
548 else if (filter.points_at.nr)
549 only_in_list = "--points-at";
550 else if (filter.reachable_from)
551 only_in_list = "--merged";
552 else if (filter.unreachable_from)
553 only_in_list = "--no-merged";
554 if (only_in_list)
555 die(_("the '%s' option is only allowed in list mode"), only_in_list);
37766b61
ÆAB
556 if (cmdmode == 'd') {
557 ret = delete_tags(argv);
558 goto cleanup;
559 }
07d347cf 560 if (cmdmode == 'v') {
4a68e36d 561 if (format.format && verify_ref_format(&format))
2eda0102 562 usage_with_options(git_tag_usage, options);
37766b61
ÆAB
563 ret = for_each_tag_name(argv, verify_tag, &format);
564 goto cleanup;
07d347cf 565 }
39686585 566
bd46c9a9
JH
567 if (msg.given || msgfile) {
568 if (msg.given && msgfile)
12909b6b 569 die(_("options '%s' and '%s' cannot be used together"), "-F", "-m");
bd46c9a9
JH
570 if (msg.given)
571 strbuf_addbuf(&buf, &(msg.buf));
39686585
CR
572 else {
573 if (!strcmp(msgfile, "-")) {
387e7e19 574 if (strbuf_read(&buf, 0, 1024) < 0)
d08ebf99 575 die_errno(_("cannot read '%s'"), msgfile);
387e7e19 576 } else {
39686585 577 if (strbuf_read_file(&buf, msgfile, 1024) < 0)
d08ebf99 578 die_errno(_("could not open or read '%s'"),
d824cbba 579 msgfile);
62e09ce9 580 }
62e09ce9 581 }
62e09ce9
CR
582 }
583
39686585 584 tag = argv[0];
62e09ce9 585
39686585
CR
586 object_ref = argc == 2 ? argv[1] : "HEAD";
587 if (argc > 2)
b8657347 588 die(_("too many arguments"));
62e09ce9 589
d850b7a5 590 if (repo_get_oid(the_repository, object_ref, &object))
d08ebf99 591 die(_("Failed to resolve '%s' as a valid ref."), object_ref);
62e09ce9 592
4f0accd6 593 if (strbuf_check_tag_ref(&ref, tag))
d08ebf99 594 die(_("'%s' is not a valid tag name."), tag);
62e09ce9 595
34c290a6 596 if (read_ref(ref.buf, &prev))
7422ab50 597 oidclr(&prev);
62e09ce9 598 else if (!force)
d08ebf99 599 die(_("tag '%s' already exists"), tag);
62e09ce9 600
d3e05983 601 opt.message_given = msg.given || msgfile;
9eed6e40 602 opt.use_editor = edit_flag;
d3e05983
KS
603
604 if (!cleanup_arg || !strcmp(cleanup_arg, "strip"))
605 opt.cleanup_mode = CLEANUP_ALL;
606 else if (!strcmp(cleanup_arg, "verbatim"))
607 opt.cleanup_mode = CLEANUP_NONE;
608 else if (!strcmp(cleanup_arg, "whitespace"))
609 opt.cleanup_mode = CLEANUP_SPACE;
610 else
611 die(_("Invalid cleanup mode %s"), cleanup_arg);
612
7422ab50 613 create_reflog_msg(&object, &reflog_msg);
df8512ed 614
61c2fe0c
LA
615 if (create_tag_object) {
616 if (force_sign_annotate && !annotate)
617 opt.sign = 1;
08c12ec1
KH
618 path = git_pathdup("TAG_EDITMSG");
619 create_tag(&object, object_ref, tag, &buf, &opt, &prev, &object,
620 path);
61c2fe0c 621 }
62e09ce9 622
e5074bfe
RS
623 transaction = ref_transaction_begin(&err);
624 if (!transaction ||
89f3bbdd 625 ref_transaction_update(transaction, ref.buf, &object, &prev,
144c76fa 626 create_reflog ? REF_FORCE_CREATE_REFLOG : 0,
df8512ed 627 reflog_msg.buf, &err) ||
08c12ec1
KH
628 ref_transaction_commit(transaction, &err)) {
629 if (path)
630 fprintf(stderr,
631 _("The tag message has been left in %s\n"),
632 path);
e5074bfe 633 die("%s", err.buf);
08c12ec1
KH
634 }
635 if (path) {
636 unlink_or_warn(path);
637 free(path);
638 }
e5074bfe 639 ref_transaction_free(transaction);
9001dc2a 640 if (force && !is_null_oid(&prev) && !oideq(&prev, &object))
aab9583f 641 printf(_("Updated tag '%s' (was %s)\n"), tag,
d850b7a5 642 repo_find_unique_abbrev(the_repository, &prev, DEFAULT_ABBREV));
62e09ce9 643
37766b61 644cleanup:
e5fb0286 645 ref_sorting_release(sorting);
b571fb98 646 ref_filter_clear(&filter);
37766b61
ÆAB
647 strbuf_release(&buf);
648 strbuf_release(&ref);
649 strbuf_release(&reflog_msg);
650 strbuf_release(&msg.buf);
651 strbuf_release(&err);
7ce4088a 652 free(msgfile);
37766b61 653 return ret;
62e09ce9 654}