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