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