]> git.ipfire.org Git - thirdparty/git.git/blame - builtin/rev-parse.c
prefix_filename: return newly allocated string
[thirdparty/git.git] / builtin / rev-parse.c
CommitLineData
178cb243
LT
1/*
2 * rev-parse.c
3 *
4 * Copyright (C) Linus Torvalds, 2005
5 */
6#include "cache.h"
a8be83fe 7#include "commit.h"
960bba0d 8#include "refs.h"
c1babb1d 9#include "quote.h"
895f10c3 10#include "builtin.h"
21d47835 11#include "parse-options.h"
9dc01bf0
JH
12#include "diff.h"
13#include "revision.h"
a76295da 14#include "split-index.h"
bf0231c6 15#include "submodule.h"
a8be83fe 16
4866ccf0
JH
17#define DO_REVS 1
18#define DO_NOREV 2
19#define DO_FLAGS 4
20#define DO_NONFLAGS 8
21static int filter = ~0;
22
96f1e58f 23static const char *def;
023d66ed 24
042a4ed7
LT
25#define NORMAL 0
26#define REVERSED 1
27static int show_type = NORMAL;
a6d97d49
JH
28
29#define SHOW_SYMBOLIC_ASIS 1
30#define SHOW_SYMBOLIC_FULL 2
96f1e58f
DR
31static int symbolic;
32static int abbrev;
a45d3469
BW
33static int abbrev_ref;
34static int abbrev_ref_strict;
96f1e58f 35static int output_sq;
4866ccf0 36
f8c87212 37static int stuck_long;
9dc01bf0 38static struct string_list *ref_excludes;
f8c87212 39
921d865e
LT
40/*
41 * Some arguments are relevant "revision" arguments,
42 * others are about output format or other details.
43 * This sorts it all out.
44 */
45static int is_rev_argument(const char *arg)
46{
47 static const char *rev_args[] = {
e091eb93 48 "--all",
4866ccf0 49 "--bisect",
5a83f3be 50 "--dense",
b09fe971 51 "--branches=",
a62be77f 52 "--branches",
4866ccf0 53 "--header",
cc243c3c 54 "--ignore-missing",
921d865e 55 "--max-age=",
4866ccf0 56 "--max-count=",
4866ccf0 57 "--min-age=",
5ccfb758 58 "--no-merges",
ad5aeede
MG
59 "--min-parents=",
60 "--no-min-parents",
61 "--max-parents=",
62 "--no-max-parents",
4866ccf0 63 "--objects",
c6496575 64 "--objects-edge",
4866ccf0
JH
65 "--parents",
66 "--pretty",
b09fe971 67 "--remotes=",
a62be77f 68 "--remotes",
d08bae7e 69 "--glob=",
5a83f3be 70 "--sparse",
b09fe971 71 "--tags=",
a62be77f 72 "--tags",
4866ccf0 73 "--topo-order",
4c8725f1 74 "--date-order",
4866ccf0 75 "--unpacked",
921d865e
LT
76 NULL
77 };
78 const char **p = rev_args;
79
8233340c
EW
80 /* accept -<digit>, like traditional "head" */
81 if ((*arg == '-') && isdigit(arg[1]))
82 return 1;
83
921d865e
LT
84 for (;;) {
85 const char *str = *p++;
86 int len;
87 if (!str)
88 return 0;
89 len = strlen(str);
4866ccf0
JH
90 if (!strcmp(arg, str) ||
91 (str[len-1] == '=' && !strncmp(arg, str, len)))
921d865e
LT
92 return 1;
93 }
94}
95
4866ccf0 96/* Output argument as a string, either SQ or normal */
5bb2c65a
JH
97static void show(const char *arg)
98{
99 if (output_sq) {
100 int sq = '\'', ch;
101
102 putchar(sq);
103 while ((ch = *arg++)) {
104 if (ch == sq)
105 fputs("'\\'", stdout);
106 putchar(ch);
107 }
108 putchar(sq);
109 putchar(' ');
110 }
111 else
112 puts(arg);
113}
114
e00f3790
JS
115/* Like show(), but with a negation prefix according to type */
116static void show_with_type(int type, const char *arg)
117{
118 if (type != show_type)
119 putchar('^');
120 show(arg);
121}
122
4866ccf0 123/* Output a revision, only if filter allows it */
30b96fce 124static void show_rev(int type, const unsigned char *sha1, const char *name)
023d66ed 125{
4866ccf0 126 if (!(filter & DO_REVS))
023d66ed 127 return;
4866ccf0 128 def = NULL;
5bb2c65a 129
a45d3469
BW
130 if ((symbolic || abbrev_ref) && name) {
131 if (symbolic == SHOW_SYMBOLIC_FULL || abbrev_ref) {
a6d97d49
JH
132 unsigned char discard[20];
133 char *full;
134
135 switch (dwim_ref(name, strlen(name), discard, &full)) {
136 case 0:
137 /*
138 * Not found -- not a ref. We could
139 * emit "name" here, but symbolic-full
140 * users are interested in finding the
141 * refs spelled in full, and they would
142 * need to filter non-refs if we did so.
143 */
144 break;
145 case 1: /* happy */
a45d3469
BW
146 if (abbrev_ref)
147 full = shorten_unambiguous_ref(full,
148 abbrev_ref_strict);
e00f3790 149 show_with_type(type, full);
a6d97d49
JH
150 break;
151 default: /* ambiguous */
152 error("refname '%s' is ambiguous", name);
153 break;
154 }
28b35632 155 free(full);
a6d97d49 156 } else {
e00f3790 157 show_with_type(type, name);
a6d97d49
JH
158 }
159 }
d5012508 160 else if (abbrev)
e00f3790 161 show_with_type(type, find_unique_abbrev(sha1, abbrev));
30b96fce 162 else
e00f3790 163 show_with_type(type, sha1_to_hex(sha1));
023d66ed
LT
164}
165
4866ccf0 166/* Output a flag, only if filter allows it. */
16cee38a 167static int show_flag(const char *arg)
023d66ed 168{
4866ccf0 169 if (!(filter & DO_FLAGS))
9523a4c2
LT
170 return 0;
171 if (filter & (is_rev_argument(arg) ? DO_REVS : DO_NOREV)) {
0360e99d 172 show(arg);
9523a4c2
LT
173 return 1;
174 }
175 return 0;
023d66ed
LT
176}
177
dfd1b749 178static int show_default(void)
023d66ed 179{
16cee38a 180 const char *s = def;
023d66ed
LT
181
182 if (s) {
183 unsigned char sha1[20];
184
185 def = NULL;
9938af6a 186 if (!get_sha1(s, sha1)) {
30b96fce 187 show_rev(NORMAL, sha1, s);
dfd1b749 188 return 1;
023d66ed 189 }
023d66ed 190 }
dfd1b749 191 return 0;
023d66ed
LT
192}
193
e23b0368 194static int show_reference(const char *refname, const struct object_id *oid, int flag, void *cb_data)
960bba0d 195{
9dc01bf0
JH
196 if (ref_excluded(ref_excludes, refname))
197 return 0;
e23b0368 198 show_rev(NORMAL, oid->hash, refname);
960bba0d
LT
199 return 0;
200}
201
e23b0368 202static int anti_reference(const char *refname, const struct object_id *oid, int flag, void *cb_data)
ad3f9a71 203{
e23b0368 204 show_rev(REVERSED, oid->hash, refname);
ad3f9a71
LT
205 return 0;
206}
207
957d7406
JH
208static int show_abbrev(const unsigned char *sha1, void *cb_data)
209{
210 show_rev(NORMAL, sha1, NULL);
211 return 0;
212}
213
c1babb1d
LT
214static void show_datestring(const char *flag, const char *datestr)
215{
c1babb1d 216 static char buffer[100];
c1babb1d
LT
217
218 /* date handling requires both flags and revs */
219 if ((filter & (DO_FLAGS | DO_REVS)) != (DO_FLAGS | DO_REVS))
220 return;
3c07b1d1 221 snprintf(buffer, sizeof(buffer), "%s%lu", flag, approxidate(datestr));
c1babb1d
LT
222 show(buffer);
223}
224
12b9d327 225static int show_file(const char *arg, int output_prefix)
7a3dd472 226{
7b34c2fa 227 show_default();
9ad0a933 228 if ((filter & (DO_NONFLAGS|DO_NOREV)) == (DO_NONFLAGS|DO_NOREV)) {
12b9d327
JK
229 if (output_prefix) {
230 const char *prefix = startup_info->prefix;
e4da43b1
JK
231 char *fname = prefix_filename(prefix, arg);
232 show(fname);
233 free(fname);
12b9d327
JK
234 } else
235 show(arg);
9ad0a933
LT
236 return 1;
237 }
238 return 0;
7a3dd472
LT
239}
240
b7d936b2 241static int try_difference(const char *arg)
3dd4e732
SB
242{
243 char *dotdot;
244 unsigned char sha1[20];
245 unsigned char end[20];
246 const char *next;
247 const char *this;
248 int symmetric;
003c84f6 249 static const char head_by_default[] = "HEAD";
3dd4e732
SB
250
251 if (!(dotdot = strstr(arg, "..")))
252 return 0;
253 next = dotdot + 2;
254 this = arg;
255 symmetric = (*next == '.');
256
257 *dotdot = 0;
258 next += symmetric;
259
260 if (!*next)
003c84f6 261 next = head_by_default;
3dd4e732 262 if (dotdot == arg)
003c84f6
JH
263 this = head_by_default;
264
265 if (this == head_by_default && next == head_by_default &&
266 !symmetric) {
267 /*
268 * Just ".."? That is not a range but the
269 * pathspec for the parent directory.
270 */
271 *dotdot = '.';
272 return 0;
273 }
274
c036c4c5 275 if (!get_sha1_committish(this, sha1) && !get_sha1_committish(next, end)) {
3dd4e732
SB
276 show_rev(NORMAL, end, next);
277 show_rev(symmetric ? NORMAL : REVERSED, sha1, this);
278 if (symmetric) {
279 struct commit_list *exclude;
280 struct commit *a, *b;
281 a = lookup_commit_reference(sha1);
282 b = lookup_commit_reference(end);
2ce406cc 283 exclude = get_merge_bases(a, b);
3dd4e732 284 while (exclude) {
e510ab89 285 struct commit *commit = pop_commit(&exclude);
ed1c9977 286 show_rev(REVERSED, commit->object.oid.hash, NULL);
3dd4e732
SB
287 }
288 }
62f162f8 289 *dotdot = '.';
3dd4e732
SB
290 return 1;
291 }
292 *dotdot = '.';
293 return 0;
294}
295
2122f8b9
BS
296static int try_parent_shorthands(const char *arg)
297{
298 char *dotdot;
299 unsigned char sha1[20];
300 struct commit *commit;
301 struct commit_list *parents;
8779351d
VN
302 int parent_number;
303 int include_rev = 0;
304 int include_parents = 0;
305 int exclude_parent = 0;
306
307 if ((dotdot = strstr(arg, "^!"))) {
308 include_rev = 1;
309 if (dotdot[2])
310 return 0;
311 } else if ((dotdot = strstr(arg, "^@"))) {
312 include_parents = 1;
313 if (dotdot[2])
314 return 0;
315 } else if ((dotdot = strstr(arg, "^-"))) {
316 include_rev = 1;
317 exclude_parent = 1;
318
319 if (dotdot[2]) {
320 char *end;
321 exclude_parent = strtoul(dotdot + 2, &end, 10);
322 if (*end != '\0' || !exclude_parent)
323 return 0;
324 }
325 } else
2122f8b9
BS
326 return 0;
327
328 *dotdot = 0;
62f162f8
JK
329 if (get_sha1_committish(arg, sha1)) {
330 *dotdot = '^';
2122f8b9 331 return 0;
62f162f8 332 }
2122f8b9 333
2122f8b9 334 commit = lookup_commit_reference(sha1);
8779351d
VN
335 if (exclude_parent &&
336 exclude_parent > commit_list_count(commit->parents)) {
337 *dotdot = '^';
338 return 0;
339 }
340
341 if (include_rev)
342 show_rev(NORMAL, sha1, arg);
343 for (parents = commit->parents, parent_number = 1;
344 parents;
345 parents = parents->next, parent_number++) {
a2e7b04c
JK
346 char *name = NULL;
347
8779351d
VN
348 if (exclude_parent && parent_number != exclude_parent)
349 continue;
350
a2e7b04c
JK
351 if (symbolic)
352 name = xstrfmt("%s^%d", arg, parent_number);
8779351d 353 show_rev(include_parents ? NORMAL : REVERSED,
a2e7b04c
JK
354 parents->item->object.oid.hash, name);
355 free(name);
8779351d 356 }
2122f8b9 357
62f162f8 358 *dotdot = '^';
2122f8b9
BS
359 return 1;
360}
361
21d47835
PH
362static int parseopt_dump(const struct option *o, const char *arg, int unset)
363{
364 struct strbuf *parsed = o->value;
365 if (unset)
366 strbuf_addf(parsed, " --no-%s", o->long_name);
f8c87212 367 else if (o->short_name && (o->long_name == NULL || !stuck_long))
21d47835
PH
368 strbuf_addf(parsed, " -%c", o->short_name);
369 else
370 strbuf_addf(parsed, " --%s", o->long_name);
371 if (arg) {
f8c87212
NV
372 if (!stuck_long)
373 strbuf_addch(parsed, ' ');
374 else if (o->long_name)
375 strbuf_addch(parsed, '=');
21d47835
PH
376 sq_quote_buf(parsed, arg);
377 }
378 return 0;
379}
380
381static const char *skipspaces(const char *s)
382{
383 while (isspace(*s))
384 s++;
385 return s;
386}
387
388static int cmd_parseopt(int argc, const char **argv, const char *prefix)
389{
6e0800ef 390 static int keep_dashdash = 0, stop_at_non_option = 0;
21d47835 391 static char const * const parseopt_usage[] = {
9c9b4f2f 392 N_("git rev-parse --parseopt [<options>] -- [<args>...]"),
21d47835
PH
393 NULL
394 };
395 static struct option parseopt_opts[] = {
d5d09d47 396 OPT_BOOL(0, "keep-dashdash", &keep_dashdash,
2c7c184c 397 N_("keep the `--` passed as an arg")),
d5d09d47 398 OPT_BOOL(0, "stop-at-non-option", &stop_at_non_option,
2c7c184c
NTND
399 N_("stop parsing after the "
400 "first non-option argument")),
f8c87212
NV
401 OPT_BOOL(0, "stuck-long", &stuck_long,
402 N_("output in stuck long form")),
21d47835
PH
403 OPT_END(),
404 };
2d893dff 405 static const char * const flag_chars = "*=?!";
21d47835 406
f285a2d7 407 struct strbuf sb = STRBUF_INIT, parsed = STRBUF_INIT;
21d47835
PH
408 const char **usage = NULL;
409 struct option *opts = NULL;
410 int onb = 0, osz = 0, unb = 0, usz = 0;
411
21d47835 412 strbuf_addstr(&parsed, "set --");
37782920 413 argc = parse_options(argc, argv, prefix, parseopt_opts, parseopt_usage,
21d47835
PH
414 PARSE_OPT_KEEP_DASHDASH);
415 if (argc < 1 || strcmp(argv[0], "--"))
416 usage_with_options(parseopt_usage, parseopt_opts);
417
21d47835
PH
418 /* get the usage up to the first line with a -- on it */
419 for (;;) {
72e37b6a 420 if (strbuf_getline(&sb, stdin) == EOF)
21d47835
PH
421 die("premature end of input");
422 ALLOC_GROW(usage, unb + 1, usz);
423 if (!strcmp("--", sb.buf)) {
424 if (unb < 1)
425 die("no usage string given before the `--' separator");
426 usage[unb] = NULL;
427 break;
428 }
429 usage[unb++] = strbuf_detach(&sb, NULL);
430 }
431
9bab5b60 432 /* parse: (<short>|<short>,<long>|<long>)[*=?!]*<arghint>? SP+ <help> */
72e37b6a 433 while (strbuf_getline(&sb, stdin) != EOF) {
21d47835 434 const char *s;
2d893dff 435 const char *help;
21d47835
PH
436 struct option *o;
437
438 if (!sb.len)
439 continue;
440
441 ALLOC_GROW(opts, onb + 1, osz);
442 memset(opts + onb, 0, sizeof(opts[onb]));
443
444 o = &opts[onb++];
2d893dff
IB
445 help = strchr(sb.buf, ' ');
446 if (!help || *sb.buf == ' ') {
21d47835 447 o->type = OPTION_GROUP;
e1033436 448 o->help = xstrdup(skipspaces(sb.buf));
21d47835
PH
449 continue;
450 }
451
452 o->type = OPTION_CALLBACK;
2d893dff 453 o->help = xstrdup(skipspaces(help));
21d47835 454 o->value = &parsed;
ff962a3f 455 o->flags = PARSE_OPT_NOARG;
21d47835 456 o->callback = &parseopt_dump;
9bab5b60 457
2d893dff
IB
458 /* name(s) */
459 s = strpbrk(sb.buf, flag_chars);
460 if (s == NULL)
461 s = help;
462
463 if (s - sb.buf == 1) /* short option only */
464 o->short_name = *sb.buf;
465 else if (sb.buf[1] != ',') /* long option only */
466 o->long_name = xmemdupz(sb.buf, s - sb.buf);
467 else {
468 o->short_name = *sb.buf;
469 o->long_name = xmemdupz(sb.buf + 2, s - sb.buf - 2);
470 }
471
472 /* flags */
473 while (s < help) {
474 switch (*s++) {
ff962a3f
PH
475 case '=':
476 o->flags &= ~PARSE_OPT_NOARG;
2d893dff 477 continue;
ff962a3f
PH
478 case '?':
479 o->flags &= ~PARSE_OPT_NOARG;
480 o->flags |= PARSE_OPT_OPTARG;
2d893dff 481 continue;
ff962a3f
PH
482 case '!':
483 o->flags |= PARSE_OPT_NONEG;
2d893dff 484 continue;
ff962a3f
PH
485 case '*':
486 o->flags |= PARSE_OPT_HIDDEN;
2d893dff 487 continue;
ff962a3f 488 }
2d893dff
IB
489 s--;
490 break;
21d47835
PH
491 }
492
2d893dff
IB
493 if (s < help)
494 o->argh = xmemdupz(s, help - s);
21d47835
PH
495 }
496 strbuf_release(&sb);
497
498 /* put an OPT_END() */
499 ALLOC_GROW(opts, onb + 1, osz);
500 memset(opts + onb, 0, sizeof(opts[onb]));
37782920 501 argc = parse_options(argc, argv, prefix, opts, usage,
29981380 502 (keep_dashdash ? PARSE_OPT_KEEP_DASHDASH : 0) |
fcd91f8d 503 (stop_at_non_option ? PARSE_OPT_STOP_AT_NON_OPTION : 0) |
47e9cd28 504 PARSE_OPT_SHELL_EVAL);
21d47835 505
02962d36 506 strbuf_addstr(&parsed, " --");
b319ce4c 507 sq_quote_argv(&parsed, argv, 0);
21d47835
PH
508 puts(parsed.buf);
509 return 0;
510}
511
50325377
CC
512static int cmd_sq_quote(int argc, const char **argv)
513{
514 struct strbuf buf = STRBUF_INIT;
515
516 if (argc)
517 sq_quote_argv(&buf, argv, 0);
518 printf("%s\n", buf.buf);
519 strbuf_release(&buf);
520
521 return 0;
522}
523
b1b35969
CC
524static void die_no_single_rev(int quiet)
525{
526 if (quiet)
527 exit(1);
528 else
529 die("Needed a single revision");
530}
531
7006b5be 532static const char builtin_rev_parse_usage[] =
9c9b4f2f 533N_("git rev-parse --parseopt [<options>] -- [<args>...]\n"
2c7c184c 534 " or: git rev-parse --sq-quote [<arg>...]\n"
9c9b4f2f 535 " or: git rev-parse [<options>] [<arg>...]\n"
2c7c184c
NTND
536 "\n"
537 "Run \"git rev-parse --parseopt -h\" for more information on the first usage.");
7006b5be 538
a633fca0 539int cmd_rev_parse(int argc, const char **argv, const char *prefix)
178cb243 540{
dfd1b749 541 int i, as_is = 0, verify = 0, quiet = 0, revs_count = 0, type = 0;
fc7d47f0 542 int did_repo_setup = 0;
14185673 543 int has_dashdash = 0;
12b9d327 544 int output_prefix = 0;
178cb243 545 unsigned char sha1[20];
c41a87dd 546 unsigned int flags = 0;
dfd1b749 547 const char *name = NULL;
c41a87dd 548 struct object_context unused;
098aa867 549 struct strbuf buf = STRBUF_INIT;
a62be77f 550
21d47835
PH
551 if (argc > 1 && !strcmp("--parseopt", argv[1]))
552 return cmd_parseopt(argc - 1, argv + 1, prefix);
553
50325377
CC
554 if (argc > 1 && !strcmp("--sq-quote", argv[1]))
555 return cmd_sq_quote(argc - 2, argv + 2);
556
7006b5be
JN
557 if (argc > 1 && !strcmp("-h", argv[1]))
558 usage(builtin_rev_parse_usage);
559
14185673
JK
560 for (i = 1; i < argc; i++) {
561 if (!strcmp(argv[i], "--")) {
562 has_dashdash = 1;
563 break;
564 }
565 }
566
fc7d47f0
JK
567 /* No options; just report on whether we're in a git repo or not. */
568 if (argc == 1) {
569 setup_git_directory();
570 git_config(git_default_config, NULL);
571 return 0;
572 }
573
178cb243 574 for (i = 1; i < argc; i++) {
16cee38a 575 const char *arg = argv[i];
fb18a2ed 576
fc7d47f0
JK
577 if (!strcmp(arg, "--local-env-vars")) {
578 int i;
579 for (i = 0; local_repo_env[i]; i++)
580 printf("%s\n", local_repo_env[i]);
581 continue;
582 }
583 if (!strcmp(arg, "--resolve-git-dir")) {
584 const char *gitdir = argv[++i];
585 if (!gitdir)
586 die("--resolve-git-dir requires an argument");
587 gitdir = resolve_gitdir(gitdir);
588 if (!gitdir)
589 die("not a gitdir '%s'", argv[i]);
590 puts(gitdir);
591 continue;
592 }
593
594 /* The rest of the options require a git repository. */
595 if (!did_repo_setup) {
596 prefix = setup_git_directory();
597 git_config(git_default_config, NULL);
598 did_repo_setup = 1;
599 }
600
557bd833
NTND
601 if (!strcmp(arg, "--git-path")) {
602 if (!argv[i + 1])
603 die("--git-path requires an argument");
098aa867
JS
604 strbuf_reset(&buf);
605 puts(relative_path(git_path("%s", argv[i + 1]),
606 prefix, &buf));
557bd833
NTND
607 i++;
608 continue;
609 }
178cb243 610 if (as_is) {
12b9d327 611 if (show_file(arg, output_prefix) && as_is < 2)
023e37c3 612 verify_filename(prefix, arg, 0);
178cb243
LT
613 continue;
614 }
3af06987
EW
615 if (!strcmp(arg,"-n")) {
616 if (++i >= argc)
617 die("-n requires an argument");
618 if ((filter & DO_FLAGS) && (filter & DO_REVS)) {
619 show(arg);
620 show(argv[i]);
621 }
622 continue;
623 }
59556548 624 if (starts_with(arg, "-n")) {
3af06987
EW
625 if ((filter & DO_FLAGS) && (filter & DO_REVS))
626 show(arg);
627 continue;
628 }
629
178cb243
LT
630 if (*arg == '-') {
631 if (!strcmp(arg, "--")) {
fb18a2ed 632 as_is = 2;
a08b6505
LT
633 /* Pass on the "--" if we show anything but files.. */
634 if (filter & (DO_FLAGS | DO_REVS))
12b9d327 635 show_file(arg, 0);
4866ccf0 636 continue;
178cb243
LT
637 }
638 if (!strcmp(arg, "--default")) {
a43219f2
DS
639 def = argv[++i];
640 if (!def)
641 die("--default requires an argument");
178cb243
LT
642 continue;
643 }
12b9d327 644 if (!strcmp(arg, "--prefix")) {
a43219f2
DS
645 prefix = argv[++i];
646 if (!prefix)
647 die("--prefix requires an argument");
12b9d327
JK
648 startup_info->prefix = prefix;
649 output_prefix = 1;
12b9d327
JK
650 continue;
651 }
8ebb0184 652 if (!strcmp(arg, "--revs-only")) {
4866ccf0 653 filter &= ~DO_NOREV;
8ebb0184
LT
654 continue;
655 }
656 if (!strcmp(arg, "--no-revs")) {
4866ccf0 657 filter &= ~DO_REVS;
8ebb0184
LT
658 continue;
659 }
f79b65aa 660 if (!strcmp(arg, "--flags")) {
4866ccf0 661 filter &= ~DO_NONFLAGS;
f79b65aa
LT
662 continue;
663 }
664 if (!strcmp(arg, "--no-flags")) {
4866ccf0 665 filter &= ~DO_FLAGS;
f79b65aa
LT
666 continue;
667 }
023d66ed 668 if (!strcmp(arg, "--verify")) {
4866ccf0
JH
669 filter &= ~(DO_FLAGS|DO_NOREV);
670 verify = 1;
023d66ed 671 continue;
921d865e 672 }
b1b35969
CC
673 if (!strcmp(arg, "--quiet") || !strcmp(arg, "-q")) {
674 quiet = 1;
c41a87dd 675 flags |= GET_SHA1_QUIETLY;
b1b35969
CC
676 continue;
677 }
62a604ba 678 if (!strcmp(arg, "--short") ||
59556548 679 starts_with(arg, "--short=")) {
d5012508
JH
680 filter &= ~(DO_FLAGS|DO_NOREV);
681 verify = 1;
682 abbrev = DEFAULT_ABBREV;
7b5b7721
JH
683 if (!arg[7])
684 continue;
685 abbrev = strtoul(arg + 8, NULL, 10);
1dc4fb84
JH
686 if (abbrev < MINIMUM_ABBREV)
687 abbrev = MINIMUM_ABBREV;
688 else if (40 <= abbrev)
689 abbrev = 40;
d5012508
JH
690 continue;
691 }
5bb2c65a
JH
692 if (!strcmp(arg, "--sq")) {
693 output_sq = 1;
694 continue;
695 }
042a4ed7
LT
696 if (!strcmp(arg, "--not")) {
697 show_type ^= REVERSED;
698 continue;
699 }
30b96fce 700 if (!strcmp(arg, "--symbolic")) {
a6d97d49
JH
701 symbolic = SHOW_SYMBOLIC_ASIS;
702 continue;
703 }
704 if (!strcmp(arg, "--symbolic-full-name")) {
705 symbolic = SHOW_SYMBOLIC_FULL;
30b96fce
JH
706 continue;
707 }
59556548 708 if (starts_with(arg, "--abbrev-ref") &&
a45d3469
BW
709 (!arg[12] || arg[12] == '=')) {
710 abbrev_ref = 1;
711 abbrev_ref_strict = warn_ambiguous_refs;
712 if (arg[12] == '=') {
713 if (!strcmp(arg + 13, "strict"))
714 abbrev_ref_strict = 1;
715 else if (!strcmp(arg + 13, "loose"))
716 abbrev_ref_strict = 0;
717 else
718 die("unknown mode for %s", arg);
719 }
720 continue;
721 }
960bba0d 722 if (!strcmp(arg, "--all")) {
e23b0368 723 for_each_ref(show_reference, NULL);
960bba0d
LT
724 continue;
725 }
59556548 726 if (starts_with(arg, "--disambiguate=")) {
957d7406
JH
727 for_each_abbrev(arg + 15, show_abbrev, NULL);
728 continue;
729 }
ad3f9a71 730 if (!strcmp(arg, "--bisect")) {
e23b0368
MH
731 for_each_ref_in("refs/bisect/bad", show_reference, NULL);
732 for_each_ref_in("refs/bisect/good", anti_reference, NULL);
ad3f9a71
LT
733 continue;
734 }
59556548 735 if (starts_with(arg, "--branches=")) {
e23b0368
MH
736 for_each_glob_ref_in(show_reference, arg + 11,
737 "refs/heads/", NULL);
9dc01bf0 738 clear_ref_exclusion(&ref_excludes);
b09fe971
IL
739 continue;
740 }
a62be77f 741 if (!strcmp(arg, "--branches")) {
e23b0368 742 for_each_branch_ref(show_reference, NULL);
9dc01bf0 743 clear_ref_exclusion(&ref_excludes);
a62be77f
SE
744 continue;
745 }
59556548 746 if (starts_with(arg, "--tags=")) {
e23b0368
MH
747 for_each_glob_ref_in(show_reference, arg + 7,
748 "refs/tags/", NULL);
9dc01bf0 749 clear_ref_exclusion(&ref_excludes);
b09fe971
IL
750 continue;
751 }
a62be77f 752 if (!strcmp(arg, "--tags")) {
e23b0368 753 for_each_tag_ref(show_reference, NULL);
9dc01bf0 754 clear_ref_exclusion(&ref_excludes);
a62be77f
SE
755 continue;
756 }
59556548 757 if (starts_with(arg, "--glob=")) {
e23b0368 758 for_each_glob_ref(show_reference, arg + 7, NULL);
9dc01bf0 759 clear_ref_exclusion(&ref_excludes);
d08bae7e
IL
760 continue;
761 }
59556548 762 if (starts_with(arg, "--remotes=")) {
e23b0368
MH
763 for_each_glob_ref_in(show_reference, arg + 10,
764 "refs/remotes/", NULL);
9dc01bf0 765 clear_ref_exclusion(&ref_excludes);
b09fe971
IL
766 continue;
767 }
a62be77f 768 if (!strcmp(arg, "--remotes")) {
e23b0368 769 for_each_remote_ref(show_reference, NULL);
9dc01bf0
JH
770 clear_ref_exclusion(&ref_excludes);
771 continue;
772 }
ad704485 773 if (starts_with(arg, "--exclude=")) {
9dc01bf0 774 add_ref_exclusion(&ref_excludes, arg + 10);
a62be77f
SE
775 continue;
776 }
7cceca5c
SD
777 if (!strcmp(arg, "--show-toplevel")) {
778 const char *work_tree = get_git_work_tree();
779 if (work_tree)
780 puts(work_tree);
781 continue;
782 }
bf0231c6
SB
783 if (!strcmp(arg, "--show-superproject-working-tree")) {
784 const char *superproject = get_superproject_working_tree();
785 if (superproject)
786 puts(superproject);
787 continue;
788 }
d288a700 789 if (!strcmp(arg, "--show-prefix")) {
4866ccf0
JH
790 if (prefix)
791 puts(prefix);
658219f1
RL
792 else
793 putchar('\n');
d288a700
LT
794 continue;
795 }
5f94c730
JH
796 if (!strcmp(arg, "--show-cdup")) {
797 const char *pfx = prefix;
e90fdc39
JS
798 if (!is_inside_work_tree()) {
799 const char *work_tree =
800 get_git_work_tree();
801 if (work_tree)
802 printf("%s\n", work_tree);
803 continue;
804 }
5f94c730
JH
805 while (pfx) {
806 pfx = strchr(pfx, '/');
807 if (pfx) {
808 pfx++;
809 printf("../");
810 }
811 }
812 putchar('\n');
813 continue;
814 }
a2f5a876
SG
815 if (!strcmp(arg, "--git-dir") ||
816 !strcmp(arg, "--absolute-git-dir")) {
a8783eeb 817 const char *gitdir = getenv(GIT_DIR_ENVIRONMENT);
56b9f6e7 818 char *cwd;
d06f15d9 819 int len;
a2f5a876
SG
820 if (arg[2] == 'g') { /* --git-dir */
821 if (gitdir) {
822 puts(gitdir);
823 continue;
824 }
825 if (!prefix) {
826 puts(".git");
827 continue;
828 }
829 } else { /* --absolute-git-dir */
830 if (!gitdir && !prefix)
831 gitdir = ".git";
832 if (gitdir) {
833 puts(real_path(gitdir));
834 continue;
835 }
a8783eeb 836 }
56b9f6e7 837 cwd = xgetcwd();
d06f15d9
NTND
838 len = strlen(cwd);
839 printf("%s%s.git\n", cwd, len && cwd[len-1] != '/' ? "/" : "");
56b9f6e7 840 free(cwd);
a8783eeb
LT
841 continue;
842 }
31e26ebc 843 if (!strcmp(arg, "--git-common-dir")) {
098aa867
JS
844 strbuf_reset(&buf);
845 puts(relative_path(get_git_common_dir(),
846 prefix, &buf));
31e26ebc
NTND
847 continue;
848 }
6d9ba67b
JS
849 if (!strcmp(arg, "--is-inside-git-dir")) {
850 printf("%s\n", is_inside_git_dir() ? "true"
851 : "false");
852 continue;
853 }
892c41b9
ML
854 if (!strcmp(arg, "--is-inside-work-tree")) {
855 printf("%s\n", is_inside_work_tree() ? "true"
856 : "false");
857 continue;
858 }
493c774e
ML
859 if (!strcmp(arg, "--is-bare-repository")) {
860 printf("%s\n", is_bare_repository() ? "true"
861 : "false");
862 continue;
863 }
a76295da
NTND
864 if (!strcmp(arg, "--shared-index-path")) {
865 if (read_cache() < 0)
866 die(_("Could not read the index"));
867 if (the_index.split_index) {
868 const unsigned char *sha1 = the_index.split_index->base_sha1;
098aa867
JS
869 const char *path = git_path("sharedindex.%s", sha1_to_hex(sha1));
870 strbuf_reset(&buf);
871 puts(relative_path(path, prefix, &buf));
a76295da
NTND
872 }
873 continue;
874 }
59556548 875 if (starts_with(arg, "--since=")) {
c1babb1d
LT
876 show_datestring("--max-age=", arg+8);
877 continue;
878 }
59556548 879 if (starts_with(arg, "--after=")) {
c1babb1d
LT
880 show_datestring("--max-age=", arg+8);
881 continue;
882 }
59556548 883 if (starts_with(arg, "--before=")) {
c1babb1d
LT
884 show_datestring("--min-age=", arg+9);
885 continue;
886 }
59556548 887 if (starts_with(arg, "--until=")) {
c1babb1d
LT
888 show_datestring("--min-age=", arg+8);
889 continue;
890 }
9523a4c2 891 if (show_flag(arg) && verify)
b1b35969 892 die_no_single_rev(quiet);
178cb243
LT
893 continue;
894 }
4866ccf0
JH
895
896 /* Not a flag argument */
3dd4e732
SB
897 if (try_difference(arg))
898 continue;
2122f8b9
BS
899 if (try_parent_shorthands(arg))
900 continue;
dfd1b749
CC
901 name = arg;
902 type = NORMAL;
903 if (*arg == '^') {
904 name++;
905 type = REVERSED;
800644c5 906 }
c41a87dd 907 if (!get_sha1_with_context(name, flags, sha1, &unused)) {
dfd1b749
CC
908 if (verify)
909 revs_count++;
910 else
911 show_rev(type, sha1, name);
800644c5
LT
912 continue;
913 }
75ecfce3
CC
914 if (verify)
915 die_no_single_rev(quiet);
14185673
JK
916 if (has_dashdash)
917 die("bad revision '%s'", arg);
9ad0a933 918 as_is = 1;
12b9d327 919 if (!show_file(arg, output_prefix))
9ad0a933 920 continue;
023e37c3 921 verify_filename(prefix, arg, 1);
023d66ed 922 }
098aa867 923 strbuf_release(&buf);
dfd1b749
CC
924 if (verify) {
925 if (revs_count == 1) {
926 show_rev(type, sha1, name);
927 return 0;
928 } else if (revs_count == 0 && show_default())
929 return 0;
b1b35969 930 die_no_single_rev(quiet);
dfd1b749
CC
931 } else
932 show_default();
178cb243
LT
933 return 0;
934}