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