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