blob: 43caff2ffe185df6ab224b93b4fd9ce3d82de2d0 [file] [log] [blame]
Linus Torvalds908e5312005-12-24 13:50:45 -08001#include "cache.h"
2#include "commit.h"
Junio C Hamano635d4132005-12-27 14:36:49 -08003#include "tag.h"
Linus Torvalds908e5312005-12-24 13:50:45 -08004#include "refs.h"
Shawn O. Pearce9a0eaf82007-01-10 06:36:36 -05005#include "builtin.h"
Shawn O. Pearce23615702007-05-21 03:20:25 -04006#include "exec_cmd.h"
Pierre Habouzit166185b2007-10-07 20:54:08 +02007#include "parse-options.h"
Jean Privat9f67d2e2009-10-21 09:35:22 -04008#include "diff.h"
Linus Torvalds908e5312005-12-24 13:50:45 -08009
Shawn O. Pearce8713ab32007-01-13 17:30:53 -050010#define SEEN (1u<<0)
11#define MAX_TAGS (FLAG_BITS - 1)
12
Pierre Habouzit166185b2007-10-07 20:54:08 +020013static const char * const describe_usage[] = {
Stephan Beyer1b1dd232008-07-13 15:36:15 +020014 "git describe [options] <committish>*",
Jean Privat9f67d2e2009-10-21 09:35:22 -040015 "git describe [options] --dirty",
Pierre Habouzit166185b2007-10-07 20:54:08 +020016 NULL
17};
Linus Torvalds908e5312005-12-24 13:50:45 -080018
Shawn O. Pearce8713ab32007-01-13 17:30:53 -050019static int debug; /* Display lots of verbose info */
Shawn O. Pearce7e425c42008-10-13 07:39:46 -070020static int all; /* Any valid ref can be used */
21static int tags; /* Allow lightweight tags */
Santi Béjar518120e2008-02-25 10:43:33 +010022static int longformat;
Junio C Hamano2d9e7c92005-12-27 14:40:17 -080023static int abbrev = DEFAULT_ABBREV;
Shawn O. Pearce8713ab32007-01-13 17:30:53 -050024static int max_candidates = 10;
Björn Steinbrinkd68dc342009-08-06 14:15:14 +020025static int found_names;
Nanako Shiraishicb2a1cc2008-07-16 19:42:14 +090026static const char *pattern;
Junio C Hamanoda2478d2008-03-02 08:51:57 -080027static int always;
Jean Privat9f67d2e2009-10-21 09:35:22 -040028static const char *dirty;
29
30/* diff-index command arguments to check if working tree is dirty. */
31static const char *diff_index_args[] = {
32 "diff-index", "--quiet", "HEAD", "--", NULL
33};
34
Linus Torvalds908e5312005-12-24 13:50:45 -080035
Shawn O. Pearcee7eb5032007-01-14 22:16:55 -050036struct commit_name {
Shawn O. Pearce212945d2008-02-28 01:22:36 -050037 struct tag *tag;
Shawn O. Pearce03e8b542010-04-12 16:25:29 -070038 unsigned prio:2; /* annotated tag = 2, tag = 1, head = 0 */
39 unsigned name_checked:1;
Shawn O. Pearce212945d2008-02-28 01:22:36 -050040 unsigned char sha1[20];
Junio C Hamano5a2282d2006-01-08 14:22:19 -080041 char path[FLEX_ARRAY]; /* more */
Shawn O. Pearcee7eb5032007-01-14 22:16:55 -050042};
Shawn O. Pearcecf69fd42007-01-14 04:37:44 -050043static const char *prio_names[] = {
44 "head", "lightweight", "annotated",
45};
Linus Torvalds908e5312005-12-24 13:50:45 -080046
Shawn O. Pearce03e8b542010-04-12 16:25:29 -070047static int replace_name(struct commit_name *e,
48 int prio,
49 const unsigned char *sha1,
50 struct tag **tag)
51{
52 if (!e || e->prio < prio)
53 return 1;
54
55 if (e->prio == 2 && prio == 2) {
56 /* Multiple annotated tags point to the same commit.
57 * Select one to keep based upon their tagger date.
58 */
59 struct tag *t;
60
61 if (!e->tag) {
62 t = lookup_tag(e->sha1);
63 if (!t || parse_tag(t))
64 return 1;
65 e->tag = t;
66 }
67
68 t = lookup_tag(sha1);
69 if (!t || parse_tag(t))
70 return 0;
71 *tag = t;
72
73 if (e->tag->date < t->date)
74 return 1;
75 }
76
77 return 0;
78}
79
Junio C Hamano64deb852005-12-27 16:09:37 -080080static void add_to_known_names(const char *path,
Shawn O. Pearce80dbae02007-01-10 06:39:47 -050081 struct commit *commit,
Shawn O. Pearce212945d2008-02-28 01:22:36 -050082 int prio,
83 const unsigned char *sha1)
Linus Torvalds908e5312005-12-24 13:50:45 -080084{
Shawn O. Pearcee7eb5032007-01-14 22:16:55 -050085 struct commit_name *e = commit->util;
Shawn O. Pearce03e8b542010-04-12 16:25:29 -070086 struct tag *tag = NULL;
87 if (replace_name(e, prio, sha1, &tag)) {
Shawn O. Pearcee7eb5032007-01-14 22:16:55 -050088 size_t len = strlen(path)+1;
89 free(e);
90 e = xmalloc(sizeof(struct commit_name) + len);
Shawn O. Pearce03e8b542010-04-12 16:25:29 -070091 e->tag = tag;
Shawn O. Pearcee7eb5032007-01-14 22:16:55 -050092 e->prio = prio;
Shawn O. Pearce03e8b542010-04-12 16:25:29 -070093 e->name_checked = 0;
Shawn O. Pearce212945d2008-02-28 01:22:36 -050094 hashcpy(e->sha1, sha1);
Shawn O. Pearcee7eb5032007-01-14 22:16:55 -050095 memcpy(e->path, path, len);
96 commit->util = e;
Linus Torvalds908e5312005-12-24 13:50:45 -080097 }
Björn Steinbrinkd68dc342009-08-06 14:15:14 +020098 found_names = 1;
Linus Torvalds908e5312005-12-24 13:50:45 -080099}
100
Junio C Hamano8da19772006-09-20 22:02:01 -0700101static int get_name(const char *path, const unsigned char *sha1, int flag, void *cb_data)
Linus Torvalds908e5312005-12-24 13:50:45 -0800102{
Shawn O. Pearce8a5a1882008-02-24 03:07:28 -0500103 int might_be_tag = !prefixcmp(path, "refs/tags/");
Shawn O. Pearcefeededd2008-02-24 03:07:25 -0500104 struct commit *commit;
Junio C Hamano64deb852005-12-27 16:09:37 -0800105 struct object *object;
Shawn O. Pearcefeededd2008-02-24 03:07:25 -0500106 unsigned char peeled[20];
107 int is_tag, prio;
Junio C Hamano64deb852005-12-27 16:09:37 -0800108
Shawn O. Pearce8a5a1882008-02-24 03:07:28 -0500109 if (!all && !might_be_tag)
110 return 0;
111
Shawn O. Pearcefeededd2008-02-24 03:07:25 -0500112 if (!peel_ref(path, peeled) && !is_null_sha1(peeled)) {
113 commit = lookup_commit_reference_gently(peeled, 1);
114 if (!commit)
115 return 0;
116 is_tag = !!hashcmp(sha1, commit->object.sha1);
117 } else {
118 commit = lookup_commit_reference_gently(sha1, 1);
119 object = parse_object(sha1);
120 if (!commit || !object)
121 return 0;
122 is_tag = object->type == OBJ_TAG;
123 }
124
Junio C Hamano2d9e7c92005-12-27 14:40:17 -0800125 /* If --all, then any refs are used.
126 * If --tags, then any tags are used.
127 * Otherwise only annotated tags are used.
128 */
Shawn O. Pearce8a5a1882008-02-24 03:07:28 -0500129 if (might_be_tag) {
Michael Dressel4ed19a32008-06-04 21:06:31 +0200130 if (is_tag)
Junio C Hamano64deb852005-12-27 16:09:37 -0800131 prio = 2;
Michael Dressel4ed19a32008-06-04 21:06:31 +0200132 else
Junio C Hamano64deb852005-12-27 16:09:37 -0800133 prio = 1;
Michael Dressel4ed19a32008-06-04 21:06:31 +0200134
135 if (pattern && fnmatch(pattern, path + 10, 0))
136 prio = 0;
Junio C Hamano635d4132005-12-27 14:36:49 -0800137 }
Junio C Hamano64deb852005-12-27 16:09:37 -0800138 else
139 prio = 0;
140
141 if (!all) {
142 if (!prio)
143 return 0;
Junio C Hamano64deb852005-12-27 16:09:37 -0800144 }
Shawn O. Pearce212945d2008-02-28 01:22:36 -0500145 add_to_known_names(all ? path + 5 : path + 10, commit, prio, sha1);
Linus Torvalds908e5312005-12-24 13:50:45 -0800146 return 0;
147}
148
Shawn O. Pearce80dbae02007-01-10 06:39:47 -0500149struct possible_tag {
Shawn O. Pearce80dbae02007-01-10 06:39:47 -0500150 struct commit_name *name;
Shawn O. Pearcecf69fd42007-01-14 04:37:44 -0500151 int depth;
152 int found_order;
Shawn O. Pearce8713ab32007-01-13 17:30:53 -0500153 unsigned flag_within;
Shawn O. Pearce80dbae02007-01-10 06:39:47 -0500154};
155
Shawn O. Pearcecf69fd42007-01-14 04:37:44 -0500156static int compare_pt(const void *a_, const void *b_)
157{
158 struct possible_tag *a = (struct possible_tag *)a_;
159 struct possible_tag *b = (struct possible_tag *)b_;
Shawn O. Pearcecf69fd42007-01-14 04:37:44 -0500160 if (a->depth != b->depth)
161 return a->depth - b->depth;
162 if (a->found_order != b->found_order)
163 return a->found_order - b->found_order;
164 return 0;
165}
166
Shawn O. Pearce1b600e62007-01-27 01:54:21 -0500167static unsigned long finish_depth_computation(
168 struct commit_list **list,
169 struct possible_tag *best)
170{
171 unsigned long seen_commits = 0;
172 while (*list) {
173 struct commit *c = pop_commit(list);
174 struct commit_list *parents = c->parents;
175 seen_commits++;
176 if (c->object.flags & best->flag_within) {
177 struct commit_list *a = *list;
178 while (a) {
179 struct commit *i = a->item;
180 if (!(i->object.flags & best->flag_within))
181 break;
182 a = a->next;
183 }
184 if (!a)
185 break;
186 } else
187 best->depth++;
188 while (parents) {
189 struct commit *p = parents->item;
190 parse_commit(p);
191 if (!(p->object.flags & SEEN))
192 insert_by_date(p, list);
193 p->object.flags |= c->object.flags;
194 parents = parents->next;
195 }
196 }
197 return seen_commits;
198}
199
Shawn O. Pearce212945d2008-02-28 01:22:36 -0500200static void display_name(struct commit_name *n)
201{
202 if (n->prio == 2 && !n->tag) {
203 n->tag = lookup_tag(n->sha1);
Shawn O. Pearce03e8b542010-04-12 16:25:29 -0700204 if (!n->tag || parse_tag(n->tag))
Shawn O. Pearce212945d2008-02-28 01:22:36 -0500205 die("annotated tag %s not available", n->path);
Shawn O. Pearce03e8b542010-04-12 16:25:29 -0700206 }
207 if (n->tag && !n->name_checked) {
208 if (!n->tag->tag)
209 die("annotated tag %s has no embedded name", n->path);
Shawn O. Pearce81dc2232008-12-26 14:02:01 -0800210 if (strcmp(n->tag->tag, all ? n->path + 5 : n->path))
Shawn O. Pearce212945d2008-02-28 01:22:36 -0500211 warning("tag '%s' is really '%s' here", n->tag->tag, n->path);
Shawn O. Pearce03e8b542010-04-12 16:25:29 -0700212 n->name_checked = 1;
Shawn O. Pearce212945d2008-02-28 01:22:36 -0500213 }
214
215 if (n->tag)
216 printf("%s", n->tag->tag);
217 else
218 printf("%s", n->path);
Junio C Hamano870cf7d2008-03-03 13:08:26 -0800219}
220
221static void show_suffix(int depth, const unsigned char *sha1)
222{
223 printf("-%d-g%s", depth, find_unique_abbrev(sha1, abbrev));
Shawn O. Pearce212945d2008-02-28 01:22:36 -0500224}
225
Timo Hirvonen554fe202006-06-28 12:04:39 +0300226static void describe(const char *arg, int last_one)
Linus Torvalds908e5312005-12-24 13:50:45 -0800227{
Junio C Hamano4c34a2c2006-01-11 13:57:42 -0800228 unsigned char sha1[20];
Shawn O. Pearce8713ab32007-01-13 17:30:53 -0500229 struct commit *cmit, *gave_up_on = NULL;
Linus Torvalds908e5312005-12-24 13:50:45 -0800230 struct commit_list *list;
Linus Torvalds908e5312005-12-24 13:50:45 -0800231 struct commit_name *n;
Shawn O. Pearcecf69fd42007-01-14 04:37:44 -0500232 struct possible_tag all_matches[MAX_TAGS];
Shawn O. Pearce8713ab32007-01-13 17:30:53 -0500233 unsigned int match_cnt = 0, annotated_cnt = 0, cur_match;
234 unsigned long seen_commits = 0;
Thomas Rast4d236602009-10-28 23:10:06 +0100235 unsigned int unannotated_cnt = 0;
Linus Torvalds908e5312005-12-24 13:50:45 -0800236
Dmitry V. Levin31fff302006-05-09 01:43:38 +0400237 if (get_sha1(arg, sha1))
238 die("Not a valid object name %s", arg);
Junio C Hamano4c34a2c2006-01-11 13:57:42 -0800239 cmit = lookup_commit_reference(sha1);
240 if (!cmit)
Dmitry V. Levin31fff302006-05-09 01:43:38 +0400241 die("%s is not a valid '%s' object", arg, commit_type);
Junio C Hamano4c34a2c2006-01-11 13:57:42 -0800242
Shawn O. Pearcee7eb5032007-01-14 22:16:55 -0500243 n = cmit->util;
Thomas Rast7a0d61b2009-11-18 14:32:26 +0100244 if (n && (tags || all || n->prio == 2)) {
Junio C Hamano870cf7d2008-03-03 13:08:26 -0800245 /*
246 * Exact match to an existing ref.
247 */
Shawn O. Pearce212945d2008-02-28 01:22:36 -0500248 display_name(n);
Junio C Hamano870cf7d2008-03-03 13:08:26 -0800249 if (longformat)
Shawn O. Pearce14d46422008-07-03 02:32:45 +0000250 show_suffix(0, n->tag ? n->tag->tagged->sha1 : sha1);
Jean Privat9f67d2e2009-10-21 09:35:22 -0400251 if (dirty)
252 printf("%s", dirty);
Shawn O. Pearce212945d2008-02-28 01:22:36 -0500253 printf("\n");
Linus Torvalds908e5312005-12-24 13:50:45 -0800254 return;
255 }
256
Shawn O. Pearce2c33f752008-02-24 03:07:31 -0500257 if (!max_candidates)
258 die("no tag exactly matches '%s'", sha1_to_hex(cmit->object.sha1));
Shawn O. Pearce8713ab32007-01-13 17:30:53 -0500259 if (debug)
260 fprintf(stderr, "searching to describe %s\n", arg);
261
Linus Torvalds908e5312005-12-24 13:50:45 -0800262 list = NULL;
Shawn O. Pearce8713ab32007-01-13 17:30:53 -0500263 cmit->object.flags = SEEN;
Linus Torvalds908e5312005-12-24 13:50:45 -0800264 commit_list_insert(cmit, &list);
265 while (list) {
Shawn O. Pearce80dbae02007-01-10 06:39:47 -0500266 struct commit *c = pop_commit(&list);
Shawn O. Pearcedccd0c22007-01-13 17:27:52 -0500267 struct commit_list *parents = c->parents;
Shawn O. Pearce8713ab32007-01-13 17:30:53 -0500268 seen_commits++;
Shawn O. Pearcee7eb5032007-01-14 22:16:55 -0500269 n = c->util;
Linus Torvalds908e5312005-12-24 13:50:45 -0800270 if (n) {
Thomas Rast4d236602009-10-28 23:10:06 +0100271 if (!tags && !all && n->prio < 2) {
272 unannotated_cnt++;
273 } else if (match_cnt < max_candidates) {
Shawn O. Pearce8713ab32007-01-13 17:30:53 -0500274 struct possible_tag *t = &all_matches[match_cnt++];
275 t->name = n;
276 t->depth = seen_commits - 1;
277 t->flag_within = 1u << match_cnt;
Shawn O. Pearce8a8169c2007-01-25 12:40:03 -0500278 t->found_order = match_cnt;
Shawn O. Pearce8713ab32007-01-13 17:30:53 -0500279 c->object.flags |= t->flag_within;
280 if (n->prio == 2)
281 annotated_cnt++;
282 }
283 else {
284 gave_up_on = c;
285 break;
286 }
287 }
288 for (cur_match = 0; cur_match < match_cnt; cur_match++) {
289 struct possible_tag *t = &all_matches[cur_match];
290 if (!(c->object.flags & t->flag_within))
291 t->depth++;
292 }
293 if (annotated_cnt && !list) {
294 if (debug)
295 fprintf(stderr, "finished search at %s\n",
296 sha1_to_hex(c->object.sha1));
297 break;
Shawn O. Pearcedccd0c22007-01-13 17:27:52 -0500298 }
299 while (parents) {
300 struct commit *p = parents->item;
301 parse_commit(p);
Shawn O. Pearce8713ab32007-01-13 17:30:53 -0500302 if (!(p->object.flags & SEEN))
Shawn O. Pearcedccd0c22007-01-13 17:27:52 -0500303 insert_by_date(p, &list);
Shawn O. Pearce8713ab32007-01-13 17:30:53 -0500304 p->object.flags |= c->object.flags;
Shawn O. Pearcedccd0c22007-01-13 17:27:52 -0500305 parents = parents->next;
Linus Torvalds908e5312005-12-24 13:50:45 -0800306 }
307 }
Shawn O. Pearce80dbae02007-01-10 06:39:47 -0500308
Junio C Hamanoda2478d2008-03-02 08:51:57 -0800309 if (!match_cnt) {
310 const unsigned char *sha1 = cmit->object.sha1;
311 if (always) {
Jean Privat9f67d2e2009-10-21 09:35:22 -0400312 printf("%s", find_unique_abbrev(sha1, abbrev));
313 if (dirty)
314 printf("%s", dirty);
315 printf("\n");
Junio C Hamanoda2478d2008-03-02 08:51:57 -0800316 return;
317 }
Thomas Rast4d236602009-10-28 23:10:06 +0100318 if (unannotated_cnt)
319 die("No annotated tags can describe '%s'.\n"
320 "However, there were unannotated tags: try --tags.",
321 sha1_to_hex(sha1));
322 else
323 die("No tags can describe '%s'.\n"
324 "Try --always, or create some tags.",
325 sha1_to_hex(sha1));
Junio C Hamanoda2478d2008-03-02 08:51:57 -0800326 }
Shawn O. Pearce80dbae02007-01-10 06:39:47 -0500327
Shawn O. Pearcecf69fd42007-01-14 04:37:44 -0500328 qsort(all_matches, match_cnt, sizeof(all_matches[0]), compare_pt);
Shawn O. Pearce1b600e62007-01-27 01:54:21 -0500329
330 if (gave_up_on) {
331 insert_by_date(gave_up_on, &list);
332 seen_commits--;
333 }
334 seen_commits += finish_depth_computation(&list, &all_matches[0]);
335 free_commit_list(list);
336
Shawn O. Pearce8713ab32007-01-13 17:30:53 -0500337 if (debug) {
338 for (cur_match = 0; cur_match < match_cnt; cur_match++) {
339 struct possible_tag *t = &all_matches[cur_match];
Shawn O. Pearcecf69fd42007-01-14 04:37:44 -0500340 fprintf(stderr, " %-11s %8d %s\n",
341 prio_names[t->name->prio],
Shawn O. Pearce8713ab32007-01-13 17:30:53 -0500342 t->depth, t->name->path);
343 }
344 fprintf(stderr, "traversed %lu commits\n", seen_commits);
345 if (gave_up_on) {
346 fprintf(stderr,
347 "more than %i tags found; listed %i most recent\n"
348 "gave up search at %s\n",
349 max_candidates, max_candidates,
350 sha1_to_hex(gave_up_on->object.sha1));
351 }
Shawn O. Pearce80dbae02007-01-10 06:39:47 -0500352 }
Shawn O. Pearce212945d2008-02-28 01:22:36 -0500353
354 display_name(all_matches[0].name);
355 if (abbrev)
Junio C Hamano870cf7d2008-03-03 13:08:26 -0800356 show_suffix(all_matches[0].depth, cmit->object.sha1);
Jean Privat9f67d2e2009-10-21 09:35:22 -0400357 if (dirty)
358 printf("%s", dirty);
Shawn O. Pearce212945d2008-02-28 01:22:36 -0500359 printf("\n");
Shawn O. Pearce80dbae02007-01-10 06:39:47 -0500360
Shawn O. Pearce8713ab32007-01-13 17:30:53 -0500361 if (!last_one)
362 clear_commit_marks(cmit, -1);
Linus Torvalds908e5312005-12-24 13:50:45 -0800363}
364
Shawn O. Pearce9a0eaf82007-01-10 06:36:36 -0500365int cmd_describe(int argc, const char **argv, const char *prefix)
Linus Torvalds908e5312005-12-24 13:50:45 -0800366{
Shawn O. Pearce23615702007-05-21 03:20:25 -0400367 int contains = 0;
Pierre Habouzit166185b2007-10-07 20:54:08 +0200368 struct option options[] = {
369 OPT_BOOLEAN(0, "contains", &contains, "find the tag that comes after the commit"),
370 OPT_BOOLEAN(0, "debug", &debug, "debug search strategy on stderr"),
371 OPT_BOOLEAN(0, "all", &all, "use any ref in .git/refs"),
372 OPT_BOOLEAN(0, "tags", &tags, "use any tag in .git/refs/tags"),
Santi Béjar518120e2008-02-25 10:43:33 +0100373 OPT_BOOLEAN(0, "long", &longformat, "always use long format"),
Pierre Habouzit166185b2007-10-07 20:54:08 +0200374 OPT__ABBREV(&abbrev),
Shawn O. Pearce2c33f752008-02-24 03:07:31 -0500375 OPT_SET_INT(0, "exact-match", &max_candidates,
376 "only output exact matches", 0),
Pierre Habouzit166185b2007-10-07 20:54:08 +0200377 OPT_INTEGER(0, "candidates", &max_candidates,
Pierre Habouzit30ffa602007-12-21 22:49:54 +0100378 "consider <n> most recent tags (default: 10)"),
379 OPT_STRING(0, "match", &pattern, "pattern",
380 "only consider tags matching <pattern>"),
Junio C Hamanoda2478d2008-03-02 08:51:57 -0800381 OPT_BOOLEAN(0, "always", &always,
382 "show abbreviated commit object as fallback"),
Jean Privat9f67d2e2009-10-21 09:35:22 -0400383 {OPTION_STRING, 0, "dirty", &dirty, "mark",
384 "append <mark> on dirty working tree (default: \"-dirty\")",
385 PARSE_OPT_OPTARG, NULL, (intptr_t) "-dirty"},
Pierre Habouzit166185b2007-10-07 20:54:08 +0200386 OPT_END(),
387 };
Linus Torvalds908e5312005-12-24 13:50:45 -0800388
Stephen Boyd37782922009-05-23 11:53:12 -0700389 argc = parse_options(argc, argv, prefix, options, describe_usage, 0);
Shawn O. Pearce2c33f752008-02-24 03:07:31 -0500390 if (max_candidates < 0)
391 max_candidates = 0;
Pierre Habouzit166185b2007-10-07 20:54:08 +0200392 else if (max_candidates > MAX_TAGS)
393 max_candidates = MAX_TAGS;
Junio C Hamano4c34a2c2006-01-11 13:57:42 -0800394
Shawn O. Pearce8c599c72007-01-10 06:36:29 -0500395 save_commit_buffer = 0;
Dmitry V. Levin81128942006-09-14 05:03:59 +0400396
Santi Béjar518120e2008-02-25 10:43:33 +0100397 if (longformat && abbrev == 0)
398 die("--long is incompatible with --abbrev=0");
399
Shawn O. Pearce23615702007-05-21 03:20:25 -0400400 if (contains) {
Felipe Contreras4b25d092009-05-01 12:06:36 +0300401 const char **args = xmalloc((7 + argc) * sizeof(char *));
Nicolas Pitre3f7701a2007-12-19 12:53:16 -0500402 int i = 0;
403 args[i++] = "name-rev";
404 args[i++] = "--name-only";
Pierre Habouzita2cf9f42007-12-24 12:18:22 +0100405 args[i++] = "--no-undefined";
Junio C Hamanoda2478d2008-03-02 08:51:57 -0800406 if (always)
407 args[i++] = "--always";
Pierre Habouzit30ffa602007-12-21 22:49:54 +0100408 if (!all) {
Nicolas Pitre3f7701a2007-12-19 12:53:16 -0500409 args[i++] = "--tags";
Pierre Habouzit30ffa602007-12-21 22:49:54 +0100410 if (pattern) {
411 char *s = xmalloc(strlen("--refs=refs/tags/") + strlen(pattern) + 1);
412 sprintf(s, "--refs=refs/tags/%s", pattern);
413 args[i++] = s;
414 }
415 }
Felipe Contreras4b25d092009-05-01 12:06:36 +0300416 memcpy(args + i, argv, argc * sizeof(char *));
Nicolas Pitre3f7701a2007-12-19 12:53:16 -0500417 args[i + argc] = NULL;
418 return cmd_name_rev(i + argc, args, prefix);
Shawn O. Pearce23615702007-05-21 03:20:25 -0400419 }
420
René Scharfefb423da2009-10-17 18:30:48 +0200421 for_each_ref(get_name, NULL);
Junio C Hamano02d56fa2009-10-23 22:40:18 -0700422 if (!found_names && !always)
René Scharfefb423da2009-10-17 18:30:48 +0200423 die("No names found, cannot describe anything.");
424
Pierre Habouzit166185b2007-10-07 20:54:08 +0200425 if (argc == 0) {
Jean Privat9f67d2e2009-10-21 09:35:22 -0400426 if (dirty && !cmd_diff_index(ARRAY_SIZE(diff_index_args) - 1, diff_index_args, prefix))
427 dirty = NULL;
Junio C Hamanofec9ebf2006-01-15 22:25:35 -0800428 describe("HEAD", 1);
Jean Privat9f67d2e2009-10-21 09:35:22 -0400429 } else if (dirty) {
430 die("--dirty is incompatible with committishes");
Pierre Habouzit166185b2007-10-07 20:54:08 +0200431 } else {
432 while (argc-- > 0) {
433 describe(*argv++, argc == 0);
Junio C Hamanofec9ebf2006-01-15 22:25:35 -0800434 }
Pierre Habouzit166185b2007-10-07 20:54:08 +0200435 }
Linus Torvalds908e5312005-12-24 13:50:45 -0800436 return 0;
437}