]> git.ipfire.org Git - thirdparty/git.git/blame - builtin/tag.c
standardize usage info string format
[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
9#include "cache.h"
10#include "builtin.h"
11#include "refs.h"
12#include "tag.h"
13#include "run-command.h"
39686585 14#include "parse-options.h"
ffc4b801
JK
15#include "diff.h"
16#include "revision.h"
2f47eae2 17#include "gpg-interface.h"
ae7706b9 18#include "sha1-array.h"
d96e3c15 19#include "column.h"
39686585
CR
20
21static const char * const git_tag_usage[] = {
9c9b4f2f 22 N_("git tag [-a | -s | -u <key-id>] [-f] [-m <msg> | -F <file>] <tagname> [<head>]"),
c88bba18 23 N_("git tag -d <tagname>..."),
9c9b4f2f 24 N_("git tag -l [-n[<num>]] [--contains <commit>] [--points-at <object>]"
c88bba18
NTND
25 "\n\t\t[<pattern>...]"),
26 N_("git tag -v <tagname>..."),
39686585
CR
27 NULL
28};
62e09ce9 29
9ef176b5
NTND
30#define STRCMP_SORT 0 /* must be zero */
31#define VERCMP_SORT 1
32#define SORT_MASK 0x7fff
33#define REVERSE_SORT 0x8000
34
b150794d
JK
35static int tag_sort;
36
62e09ce9 37struct tag_filter {
588d0e83 38 const char **patterns;
62e09ce9 39 int lines;
9ef176b5
NTND
40 int sort;
41 struct string_list tags;
32c35cfb 42 struct commit_list *with_commit;
62e09ce9
CR
43};
44
ae7706b9 45static struct sha1_array points_at;
d96e3c15 46static unsigned int colopts;
ae7706b9 47
588d0e83
JK
48static int match_pattern(const char **patterns, const char *ref)
49{
50 /* no pattern means match everything */
51 if (!*patterns)
52 return 1;
53 for (; *patterns; patterns++)
eb07894f 54 if (!wildmatch(*patterns, ref, 0, NULL))
588d0e83
JK
55 return 1;
56 return 0;
57}
58
ae7706b9
TG
59static const unsigned char *match_points_at(const char *refname,
60 const unsigned char *sha1)
61{
62 const unsigned char *tagged_sha1 = NULL;
63 struct object *obj;
64
65 if (sha1_array_lookup(&points_at, sha1) >= 0)
66 return sha1;
67 obj = parse_object(sha1);
68 if (!obj)
69 die(_("malformed object at '%s'"), refname);
70 if (obj->type == OBJ_TAG)
71 tagged_sha1 = ((struct tag *)obj)->tagged->sha1;
72 if (tagged_sha1 && sha1_array_lookup(&points_at, tagged_sha1) >= 0)
73 return tagged_sha1;
74 return NULL;
75}
76
ffc4b801
JK
77static int in_commit_list(const struct commit_list *want, struct commit *c)
78{
79 for (; want; want = want->next)
80 if (!hashcmp(want->item->object.sha1, c->object.sha1))
81 return 1;
82 return 0;
83}
84
cbc60b67
JJL
85enum contains_result {
86 CONTAINS_UNKNOWN = -1,
87 CONTAINS_NO = 0,
95acfc24 88 CONTAINS_YES = 1
cbc60b67
JJL
89};
90
91/*
92 * Test whether the candidate or one of its parents is contained in the list.
93 * Do not recurse to find out, though, but return -1 if inconclusive.
94 */
95static enum contains_result contains_test(struct commit *candidate,
c6d72c49 96 const struct commit_list *want)
ffc4b801 97{
ffc4b801
JK
98 /* was it previously marked as containing a want commit? */
99 if (candidate->object.flags & TMP_MARK)
100 return 1;
101 /* or marked as not possibly containing a want commit? */
102 if (candidate->object.flags & UNINTERESTING)
103 return 0;
104 /* or are we it? */
cbc60b67
JJL
105 if (in_commit_list(want, candidate)) {
106 candidate->object.flags |= TMP_MARK;
ffc4b801 107 return 1;
cbc60b67 108 }
ffc4b801
JK
109
110 if (parse_commit(candidate) < 0)
111 return 0;
112
cbc60b67
JJL
113 return -1;
114}
115
116/*
117 * Mimicking the real stack, this stack lives on the heap, avoiding stack
118 * overflows.
119 *
120 * At each recursion step, the stack items points to the commits whose
121 * ancestors are to be inspected.
122 */
123struct stack {
124 int nr, alloc;
125 struct stack_entry {
126 struct commit *commit;
127 struct commit_list *parents;
128 } *stack;
129};
130
131static void push_to_stack(struct commit *candidate, struct stack *stack)
132{
133 int index = stack->nr++;
134 ALLOC_GROW(stack->stack, stack->nr, stack->alloc);
135 stack->stack[index].commit = candidate;
136 stack->stack[index].parents = candidate->parents;
ffc4b801
JK
137}
138
cbc60b67
JJL
139static enum contains_result contains(struct commit *candidate,
140 const struct commit_list *want)
ffc4b801 141{
cbc60b67
JJL
142 struct stack stack = { 0, 0, NULL };
143 int result = contains_test(candidate, want);
144
145 if (result != CONTAINS_UNKNOWN)
146 return result;
147
148 push_to_stack(candidate, &stack);
149 while (stack.nr) {
150 struct stack_entry *entry = &stack.stack[stack.nr - 1];
151 struct commit *commit = entry->commit;
152 struct commit_list *parents = entry->parents;
153
154 if (!parents) {
155 commit->object.flags |= UNINTERESTING;
156 stack.nr--;
157 }
158 /*
159 * If we just popped the stack, parents->item has been marked,
160 * therefore contains_test will return a meaningful 0 or 1.
161 */
162 else switch (contains_test(parents->item, want)) {
163 case CONTAINS_YES:
164 commit->object.flags |= TMP_MARK;
165 stack.nr--;
166 break;
167 case CONTAINS_NO:
168 entry->parents = parents->next;
169 break;
170 case CONTAINS_UNKNOWN:
171 push_to_stack(parents->item, &stack);
172 break;
173 }
174 }
175 free(stack.stack);
176 return contains_test(candidate, want);
ffc4b801
JK
177}
178
ca516999
JK
179static void show_tag_lines(const unsigned char *sha1, int lines)
180{
181 int i;
182 unsigned long size;
183 enum object_type type;
184 char *buf, *sp, *eol;
185 size_t len;
186
187 buf = read_sha1_file(sha1, &type, &size);
fb630e04
JK
188 if (!buf)
189 die_errno("unable to read object %s", sha1_to_hex(sha1));
31fd8d72
JH
190 if (type != OBJ_COMMIT && type != OBJ_TAG)
191 goto free_return;
192 if (!size)
193 die("an empty %s object %s?",
194 typename(type), sha1_to_hex(sha1));
ca516999
JK
195
196 /* skip header */
197 sp = strstr(buf, "\n\n");
31fd8d72
JH
198 if (!sp)
199 goto free_return;
200
201 /* only take up to "lines" lines, and strip the signature from a tag */
202 if (type == OBJ_TAG)
203 size = parse_signature(buf, size);
ca516999
JK
204 for (i = 0, sp += 2; i < lines && sp < buf + size; i++) {
205 if (i)
206 printf("\n ");
207 eol = memchr(sp, '\n', size - (sp - buf));
208 len = eol ? eol - sp : size - (sp - buf);
209 fwrite(sp, len, 1, stdout);
210 if (!eol)
211 break;
212 sp = eol + 1;
213 }
31fd8d72 214free_return:
ca516999
JK
215 free(buf);
216}
217
62e09ce9
CR
218static int show_reference(const char *refname, const unsigned char *sha1,
219 int flag, void *cb_data)
220{
221 struct tag_filter *filter = cb_data;
222
588d0e83 223 if (match_pattern(filter->patterns, refname)) {
32c35cfb
JG
224 if (filter->with_commit) {
225 struct commit *commit;
226
227 commit = lookup_commit_reference_gently(sha1, 1);
228 if (!commit)
229 return 0;
ffc4b801 230 if (!contains(commit, filter->with_commit))
32c35cfb
JG
231 return 0;
232 }
233
ae7706b9
TG
234 if (points_at.nr && !match_points_at(refname, sha1))
235 return 0;
236
62e09ce9 237 if (!filter->lines) {
9ef176b5
NTND
238 if (filter->sort)
239 string_list_append(&filter->tags, refname);
240 else
241 printf("%s\n", refname);
62e09ce9
CR
242 return 0;
243 }
244 printf("%-15s ", refname);
ca516999 245 show_tag_lines(sha1, filter->lines);
62e09ce9 246 putchar('\n');
62e09ce9
CR
247 }
248
249 return 0;
250}
251
9ef176b5
NTND
252static int sort_by_version(const void *a_, const void *b_)
253{
254 const struct string_list_item *a = a_;
255 const struct string_list_item *b = b_;
256 return versioncmp(a->string, b->string);
257}
258
588d0e83 259static int list_tags(const char **patterns, int lines,
9ef176b5 260 struct commit_list *with_commit, int sort)
62e09ce9
CR
261{
262 struct tag_filter filter;
62e09ce9 263
588d0e83 264 filter.patterns = patterns;
62e09ce9 265 filter.lines = lines;
9ef176b5 266 filter.sort = sort;
32c35cfb 267 filter.with_commit = with_commit;
9ef176b5
NTND
268 memset(&filter.tags, 0, sizeof(filter.tags));
269 filter.tags.strdup_strings = 1;
62e09ce9
CR
270
271 for_each_tag_ref(show_reference, (void *) &filter);
9ef176b5
NTND
272 if (sort) {
273 int i;
274 if ((sort & SORT_MASK) == VERCMP_SORT)
275 qsort(filter.tags.items, filter.tags.nr,
276 sizeof(struct string_list_item), sort_by_version);
277 if (sort & REVERSE_SORT)
278 for (i = filter.tags.nr - 1; i >= 0; i--)
279 printf("%s\n", filter.tags.items[i].string);
280 else
281 for (i = 0; i < filter.tags.nr; i++)
282 printf("%s\n", filter.tags.items[i].string);
283 string_list_clear(&filter.tags, 0);
284 }
62e09ce9
CR
285 return 0;
286}
287
e317cfaf 288typedef int (*each_tag_name_fn)(const char *name, const char *ref,
62e09ce9
CR
289 const unsigned char *sha1);
290
e317cfaf 291static int for_each_tag_name(const char **argv, each_tag_name_fn fn)
62e09ce9
CR
292{
293 const char **p;
294 char ref[PATH_MAX];
295 int had_error = 0;
296 unsigned char sha1[20];
297
298 for (p = argv; *p; p++) {
299 if (snprintf(ref, sizeof(ref), "refs/tags/%s", *p)
300 >= sizeof(ref)) {
d08ebf99 301 error(_("tag name too long: %.*s..."), 50, *p);
62e09ce9
CR
302 had_error = 1;
303 continue;
304 }
c6893323 305 if (read_ref(ref, sha1)) {
d08ebf99 306 error(_("tag '%s' not found."), *p);
62e09ce9
CR
307 had_error = 1;
308 continue;
309 }
310 if (fn(*p, ref, sha1))
311 had_error = 1;
312 }
313 return had_error;
314}
315
316static int delete_tag(const char *name, const char *ref,
317 const unsigned char *sha1)
318{
eca35a25 319 if (delete_ref(ref, sha1, 0))
62e09ce9 320 return 1;
d08ebf99 321 printf(_("Deleted tag '%s' (was %s)\n"), name, find_unique_abbrev(sha1, DEFAULT_ABBREV));
62e09ce9
CR
322 return 0;
323}
324
325static int verify_tag(const char *name, const char *ref,
326 const unsigned char *sha1)
327{
a6ccbbdb 328 const char *argv_verify_tag[] = {"verify-tag",
62e09ce9
CR
329 "-v", "SHA1_HEX", NULL};
330 argv_verify_tag[2] = sha1_to_hex(sha1);
331
a6ccbbdb 332 if (run_command_v_opt(argv_verify_tag, RUN_GIT_CMD))
d08ebf99 333 return error(_("could not verify the tag '%s'"), name);
62e09ce9
CR
334 return 0;
335}
336
fd17f5b5 337static int do_sign(struct strbuf *buffer)
62e09ce9 338{
2f47eae2 339 return sign_buffer(buffer, buffer, get_signing_key());
62e09ce9
CR
340}
341
342static const char tag_template[] =
d78f340e 343 N_("\nWrite a message for tag:\n %s\n"
eff80a9f 344 "Lines starting with '%c' will be ignored.\n");
d3e05983
KS
345
346static const char tag_template_nocleanup[] =
d78f340e 347 N_("\nWrite a message for tag:\n %s\n"
eff80a9f
JH
348 "Lines starting with '%c' will be kept; you may remove them"
349 " yourself if you want to.\n");
62e09ce9 350
b150794d
JK
351/*
352 * Parse a sort string, and return 0 if parsed successfully. Will return
353 * non-zero when the sort string does not parse into a known type. If var is
354 * given, the error message becomes a warning and includes information about
355 * the configuration value.
356 */
357static int parse_sort_string(const char *var, const char *arg, int *sort)
358{
359 int type = 0, flags = 0;
360
361 if (skip_prefix(arg, "-", &arg))
362 flags |= REVERSE_SORT;
363
364 if (skip_prefix(arg, "version:", &arg) || skip_prefix(arg, "v:", &arg))
365 type = VERCMP_SORT;
366 else
367 type = STRCMP_SORT;
368
369 if (strcmp(arg, "refname")) {
370 if (!var)
371 return error(_("unsupported sort specification '%s'"), arg);
372 else {
373 warning(_("unsupported sort specification '%s' in variable '%s'"),
374 var, arg);
375 return -1;
376 }
377 }
378
379 *sort = (type | flags);
380
381 return 0;
382}
383
ef90d6d4 384static int git_tag_config(const char *var, const char *value, void *cb)
62e09ce9 385{
b150794d
JK
386 int status;
387
388 if (!strcmp(var, "tag.sort")) {
389 if (!value)
390 return config_error_nonbool(var);
391 parse_sort_string(var, value, &tag_sort);
392 return 0;
393 }
394
395 status = git_gpg_config(var, value, cb);
2f47eae2
JH
396 if (status)
397 return status;
59556548 398 if (starts_with(var, "column."))
d96e3c15 399 return git_column_config(var, value, "tag", &colopts);
ef90d6d4 400 return git_default_config(var, value, cb);
62e09ce9
CR
401}
402
bab8118a
MH
403static void write_tag_body(int fd, const unsigned char *sha1)
404{
405 unsigned long size;
406 enum object_type type;
e10dfb62 407 char *buf, *sp;
bab8118a
MH
408
409 buf = read_sha1_file(sha1, &type, &size);
410 if (!buf)
411 return;
412 /* skip header */
413 sp = strstr(buf, "\n\n");
414
415 if (!sp || !size || type != OBJ_TAG) {
416 free(buf);
417 return;
418 }
419 sp += 2; /* skip the 2 LFs */
e10dfb62 420 write_or_die(fd, sp, parse_signature(sp, buf + size - sp));
bab8118a
MH
421
422 free(buf);
423}
424
3927bbe9
JK
425static int build_tag_object(struct strbuf *buf, int sign, unsigned char *result)
426{
427 if (sign && do_sign(buf) < 0)
d08ebf99 428 return error(_("unable to sign the tag"));
3927bbe9 429 if (write_sha1_file(buf->buf, buf->len, tag_type, result) < 0)
d08ebf99 430 return error(_("unable to write tag file"));
3927bbe9
JK
431 return 0;
432}
433
d3e05983
KS
434struct create_tag_options {
435 unsigned int message_given:1;
436 unsigned int sign;
437 enum {
438 CLEANUP_NONE,
439 CLEANUP_SPACE,
440 CLEANUP_ALL
441 } cleanup_mode;
442};
443
62e09ce9 444static void create_tag(const unsigned char *object, const char *tag,
d3e05983 445 struct strbuf *buf, struct create_tag_options *opt,
bd46c9a9 446 unsigned char *prev, unsigned char *result)
62e09ce9
CR
447{
448 enum object_type type;
fd17f5b5
PH
449 char header_buf[1024];
450 int header_len;
3927bbe9 451 char *path = NULL;
62e09ce9
CR
452
453 type = sha1_object_info(object, NULL);
e317cfaf 454 if (type <= OBJ_NONE)
d08ebf99 455 die(_("bad object type."));
62e09ce9
CR
456
457 header_len = snprintf(header_buf, sizeof(header_buf),
458 "object %s\n"
459 "type %s\n"
460 "tag %s\n"
461 "tagger %s\n\n",
462 sha1_to_hex(object),
463 typename(type),
464 tag,
f9bc573f 465 git_committer_info(IDENT_STRICT));
62e09ce9 466
e317cfaf 467 if (header_len > sizeof(header_buf) - 1)
d08ebf99 468 die(_("tag header too big."));
62e09ce9 469
d3e05983 470 if (!opt->message_given) {
62e09ce9
CR
471 int fd;
472
473 /* write the template message before editing: */
a4f34cbb 474 path = git_pathdup("TAG_EDITMSG");
62e09ce9
CR
475 fd = open(path, O_CREAT | O_TRUNC | O_WRONLY, 0600);
476 if (fd < 0)
d08ebf99 477 die_errno(_("could not create file '%s'"), path);
bab8118a 478
eff80a9f 479 if (!is_null_sha1(prev)) {
bab8118a 480 write_tag_body(fd, prev);
eff80a9f
JH
481 } else {
482 struct strbuf buf = STRBUF_INIT;
483 strbuf_addch(&buf, '\n');
484 if (opt->cleanup_mode == CLEANUP_ALL)
d78f340e 485 strbuf_commented_addf(&buf, _(tag_template), tag, comment_line_char);
eff80a9f 486 else
d78f340e 487 strbuf_commented_addf(&buf, _(tag_template_nocleanup), tag, comment_line_char);
eff80a9f
JH
488 write_or_die(fd, buf.buf, buf.len);
489 strbuf_release(&buf);
490 }
62e09ce9
CR
491 close(fd);
492
7198203a
SB
493 if (launch_editor(path, buf, NULL)) {
494 fprintf(stderr,
d08ebf99 495 _("Please supply the message using either -m or -F option.\n"));
7198203a
SB
496 exit(1);
497 }
62e09ce9 498 }
62e09ce9 499
d3e05983
KS
500 if (opt->cleanup_mode != CLEANUP_NONE)
501 stripspace(buf, opt->cleanup_mode == CLEANUP_ALL);
62e09ce9 502
d3e05983 503 if (!opt->message_given && !buf->len)
d08ebf99 504 die(_("no tag message?"));
62e09ce9 505
fd17f5b5 506 strbuf_insert(buf, 0, header_buf, header_len);
62e09ce9 507
d3e05983 508 if (build_tag_object(buf, opt->sign, result) < 0) {
3927bbe9 509 if (path)
d08ebf99 510 fprintf(stderr, _("The tag message has been left in %s\n"),
3927bbe9
JK
511 path);
512 exit(128);
513 }
514 if (path) {
691f1a28 515 unlink_or_warn(path);
3927bbe9
JK
516 free(path);
517 }
62e09ce9
CR
518}
519
bd46c9a9
JH
520struct msg_arg {
521 int given;
522 struct strbuf buf;
523};
524
525static int parse_msg_arg(const struct option *opt, const char *arg, int unset)
526{
527 struct msg_arg *msg = opt->value;
528
529 if (!arg)
530 return -1;
531 if (msg->buf.len)
532 strbuf_addstr(&(msg->buf), "\n\n");
533 strbuf_addstr(&(msg->buf), arg);
534 msg->given = 1;
535 return 0;
536}
537
4f0accd6
MS
538static int strbuf_check_tag_ref(struct strbuf *sb, const char *name)
539{
540 if (name[0] == '-')
8d9c5010 541 return -1;
4f0accd6
MS
542
543 strbuf_reset(sb);
544 strbuf_addf(sb, "refs/tags/%s", name);
545
8d9c5010 546 return check_refname_format(sb->buf, 0);
4f0accd6
MS
547}
548
0975a502 549static int parse_opt_points_at(const struct option *opt __attribute__((unused)),
ae7706b9
TG
550 const char *arg, int unset)
551{
552 unsigned char sha1[20];
553
554 if (unset) {
555 sha1_array_clear(&points_at);
556 return 0;
557 }
558 if (!arg)
559 return error(_("switch 'points-at' requires an object"));
560 if (get_sha1(arg, sha1))
561 return error(_("malformed object name '%s'"), arg);
562 sha1_array_append(&points_at, sha1);
563 return 0;
564}
565
9ef176b5
NTND
566static int parse_opt_sort(const struct option *opt, const char *arg, int unset)
567{
568 int *sort = opt->value;
9ef176b5 569
b150794d 570 return parse_sort_string(NULL, arg, sort);
9ef176b5
NTND
571}
572
62e09ce9
CR
573int cmd_tag(int argc, const char **argv, const char *prefix)
574{
f285a2d7 575 struct strbuf buf = STRBUF_INIT;
4f0accd6 576 struct strbuf ref = STRBUF_INIT;
62e09ce9 577 unsigned char object[20], prev[20];
62e09ce9 578 const char *object_ref, *tag;
d3e05983
KS
579 struct create_tag_options opt;
580 char *cleanup_arg = NULL;
e6b722db 581 int annotate = 0, force = 0, lines = -1;
b150794d 582 int cmdmode = 0;
dbd0f5c7 583 const char *msgfile = NULL, *keyid = NULL;
bd46c9a9 584 struct msg_arg msg = { 0, STRBUF_INIT };
32c35cfb 585 struct commit_list *with_commit = NULL;
e5074bfe
RS
586 struct ref_transaction *transaction;
587 struct strbuf err = STRBUF_INIT;
39686585 588 struct option options[] = {
e6b722db 589 OPT_CMDMODE('l', "list", &cmdmode, N_("list tag names"), 'l'),
c88bba18
NTND
590 { OPTION_INTEGER, 'n', NULL, &lines, N_("n"),
591 N_("print <n> lines of each tag message"),
39686585 592 PARSE_OPT_OPTARG, NULL, 1 },
e6b722db
JH
593 OPT_CMDMODE('d', "delete", &cmdmode, N_("delete tags"), 'd'),
594 OPT_CMDMODE('v', "verify", &cmdmode, N_("verify tags"), 'v'),
39686585 595
c88bba18 596 OPT_GROUP(N_("Tag creation options")),
d5d09d47 597 OPT_BOOL('a', "annotate", &annotate,
c88bba18
NTND
598 N_("annotated tag, needs a message")),
599 OPT_CALLBACK('m', "message", &msg, N_("message"),
600 N_("tag message"), parse_msg_arg),
601 OPT_FILENAME('F', "file", &msgfile, N_("read message from file")),
d5d09d47 602 OPT_BOOL('s', "sign", &opt.sign, N_("annotated and GPG-signed tag")),
c88bba18
NTND
603 OPT_STRING(0, "cleanup", &cleanup_arg, N_("mode"),
604 N_("how to strip spaces and #comments from message")),
e703d711 605 OPT_STRING('u', "local-user", &keyid, N_("key-id"),
c88bba18
NTND
606 N_("use another key to sign the tag")),
607 OPT__FORCE(&force, N_("replace the tag if exists")),
608 OPT_COLUMN(0, "column", &colopts, N_("show tag list in columns")),
9ef176b5 609 {
b150794d 610 OPTION_CALLBACK, 0, "sort", &tag_sort, N_("type"), N_("sort tags"),
9ef176b5
NTND
611 PARSE_OPT_NONEG, parse_opt_sort
612 },
c88bba18
NTND
613
614 OPT_GROUP(N_("Tag listing options")),
32c35cfb 615 {
c88bba18
NTND
616 OPTION_CALLBACK, 0, "contains", &with_commit, N_("commit"),
617 N_("print only tags that contain the commit"),
32c35cfb
JG
618 PARSE_OPT_LASTARG_DEFAULT,
619 parse_opt_with_commit, (intptr_t)"HEAD",
620 },
b0bc1365
JH
621 {
622 OPTION_CALLBACK, 0, "with", &with_commit, N_("commit"),
623 N_("print only tags that contain the commit"),
624 PARSE_OPT_HIDDEN | PARSE_OPT_LASTARG_DEFAULT,
625 parse_opt_with_commit, (intptr_t)"HEAD",
626 },
ae7706b9 627 {
c88bba18
NTND
628 OPTION_CALLBACK, 0, "points-at", NULL, N_("object"),
629 N_("print only tags of the object"), 0, parse_opt_points_at
ae7706b9 630 },
39686585
CR
631 OPT_END()
632 };
633
ef90d6d4 634 git_config(git_tag_config, NULL);
62e09ce9 635
d3e05983
KS
636 memset(&opt, 0, sizeof(opt));
637
37782920 638 argc = parse_options(argc, argv, prefix, options, git_tag_usage, 0);
62e09ce9 639
be15f505 640 if (keyid) {
d3e05983 641 opt.sign = 1;
2f47eae2 642 set_signing_key(keyid);
be15f505 643 }
d3e05983 644 if (opt.sign)
c1a41b9d 645 annotate = 1;
e6b722db
JH
646 if (argc == 0 && !cmdmode)
647 cmdmode = 'l';
c1a41b9d 648
e6b722db 649 if ((annotate || msg.given || msgfile || force) && (cmdmode != 0))
6fa8342b
ST
650 usage_with_options(git_tag_usage, options);
651
d96e3c15 652 finalize_colopts(&colopts, -1);
e6b722db 653 if (cmdmode == 'l' && lines != -1) {
d96e3c15
NTND
654 if (explicitly_enable_column(colopts))
655 die(_("--column and -n are incompatible"));
656 colopts = 0;
657 }
e6b722db 658 if (cmdmode == 'l') {
d96e3c15
NTND
659 int ret;
660 if (column_active(colopts)) {
661 struct column_options copts;
662 memset(&copts, 0, sizeof(copts));
663 copts.padding = 2;
664 run_column_filter(colopts, &copts);
665 }
b150794d 666 if (lines != -1 && tag_sort)
9ef176b5 667 die(_("--sort and -n are incompatible"));
b150794d 668 ret = list_tags(argv, lines == -1 ? 0 : lines, with_commit, tag_sort);
d96e3c15
NTND
669 if (column_active(colopts))
670 stop_column_filter();
671 return ret;
672 }
6fa8342b 673 if (lines != -1)
d08ebf99 674 die(_("-n option is only allowed with -l."));
32c35cfb 675 if (with_commit)
d08ebf99 676 die(_("--contains option is only allowed with -l."));
ae7706b9
TG
677 if (points_at.nr)
678 die(_("--points-at option is only allowed with -l."));
e6b722db 679 if (cmdmode == 'd')
39686585 680 return for_each_tag_name(argv, delete_tag);
e6b722db 681 if (cmdmode == 'v')
39686585
CR
682 return for_each_tag_name(argv, verify_tag);
683
bd46c9a9
JH
684 if (msg.given || msgfile) {
685 if (msg.given && msgfile)
d08ebf99 686 die(_("only one -F or -m option is allowed."));
39686585 687 annotate = 1;
bd46c9a9
JH
688 if (msg.given)
689 strbuf_addbuf(&buf, &(msg.buf));
39686585
CR
690 else {
691 if (!strcmp(msgfile, "-")) {
387e7e19 692 if (strbuf_read(&buf, 0, 1024) < 0)
d08ebf99 693 die_errno(_("cannot read '%s'"), msgfile);
387e7e19 694 } else {
39686585 695 if (strbuf_read_file(&buf, msgfile, 1024) < 0)
d08ebf99 696 die_errno(_("could not open or read '%s'"),
d824cbba 697 msgfile);
62e09ce9 698 }
62e09ce9 699 }
62e09ce9
CR
700 }
701
39686585 702 tag = argv[0];
62e09ce9 703
39686585
CR
704 object_ref = argc == 2 ? argv[1] : "HEAD";
705 if (argc > 2)
d08ebf99 706 die(_("too many params"));
62e09ce9
CR
707
708 if (get_sha1(object_ref, object))
d08ebf99 709 die(_("Failed to resolve '%s' as a valid ref."), object_ref);
62e09ce9 710
4f0accd6 711 if (strbuf_check_tag_ref(&ref, tag))
d08ebf99 712 die(_("'%s' is not a valid tag name."), tag);
62e09ce9 713
c6893323 714 if (read_ref(ref.buf, prev))
62e09ce9
CR
715 hashclr(prev);
716 else if (!force)
d08ebf99 717 die(_("tag '%s' already exists"), tag);
62e09ce9 718
d3e05983
KS
719 opt.message_given = msg.given || msgfile;
720
721 if (!cleanup_arg || !strcmp(cleanup_arg, "strip"))
722 opt.cleanup_mode = CLEANUP_ALL;
723 else if (!strcmp(cleanup_arg, "verbatim"))
724 opt.cleanup_mode = CLEANUP_NONE;
725 else if (!strcmp(cleanup_arg, "whitespace"))
726 opt.cleanup_mode = CLEANUP_SPACE;
727 else
728 die(_("Invalid cleanup mode %s"), cleanup_arg);
729
62e09ce9 730 if (annotate)
d3e05983 731 create_tag(object, tag, &buf, &opt, prev, object);
62e09ce9 732
e5074bfe
RS
733 transaction = ref_transaction_begin(&err);
734 if (!transaction ||
735 ref_transaction_update(transaction, ref.buf, object, prev,
db7516ab
RS
736 0, 1, NULL, &err) ||
737 ref_transaction_commit(transaction, &err))
e5074bfe
RS
738 die("%s", err.buf);
739 ref_transaction_free(transaction);
3ae851e6 740 if (force && !is_null_sha1(prev) && hashcmp(prev, object))
d08ebf99 741 printf(_("Updated tag '%s' (was %s)\n"), tag, find_unique_abbrev(prev, DEFAULT_ABBREV));
62e09ce9 742
e5074bfe 743 strbuf_release(&err);
fd17f5b5 744 strbuf_release(&buf);
4f0accd6 745 strbuf_release(&ref);
62e09ce9
CR
746 return 0;
747}