Linus Torvalds | 178cb24 | 2005-06-13 10:06:50 -0700 | [diff] [blame] | 1 | /* |
| 2 | * rev-parse.c |
| 3 | * |
| 4 | * Copyright (C) Linus Torvalds, 2005 |
| 5 | */ |
| 6 | #include "cache.h" |
Linus Torvalds | a8be83f | 2005-06-20 20:28:09 -0700 | [diff] [blame] | 7 | #include "commit.h" |
Linus Torvalds | 960bba0 | 2005-07-03 13:07:52 -0700 | [diff] [blame] | 8 | #include "refs.h" |
Linus Torvalds | c1babb1 | 2005-09-20 14:13:24 -0700 | [diff] [blame] | 9 | #include "quote.h" |
Christian Couder | 895f10c | 2006-06-03 18:45:43 +0200 | [diff] [blame] | 10 | #include "builtin.h" |
Linus Torvalds | a8be83f | 2005-06-20 20:28:09 -0700 | [diff] [blame] | 11 | |
Junio C Hamano | 4866ccf | 2005-08-24 14:30:04 -0700 | [diff] [blame] | 12 | #define DO_REVS 1 |
| 13 | #define DO_NOREV 2 |
| 14 | #define DO_FLAGS 4 |
| 15 | #define DO_NONFLAGS 8 |
| 16 | static int filter = ~0; |
| 17 | |
David Rientjes | 96f1e58 | 2006-08-15 10:23:48 -0700 | [diff] [blame] | 18 | static const char *def; |
Linus Torvalds | 023d66e | 2005-06-24 10:12:55 -0700 | [diff] [blame] | 19 | |
Linus Torvalds | 042a4ed | 2005-06-26 11:34:30 -0700 | [diff] [blame] | 20 | #define NORMAL 0 |
| 21 | #define REVERSED 1 |
| 22 | static int show_type = NORMAL; |
David Rientjes | 96f1e58 | 2006-08-15 10:23:48 -0700 | [diff] [blame] | 23 | static int symbolic; |
| 24 | static int abbrev; |
| 25 | static int output_sq; |
Junio C Hamano | 4866ccf | 2005-08-24 14:30:04 -0700 | [diff] [blame] | 26 | |
David Rientjes | 96f1e58 | 2006-08-15 10:23:48 -0700 | [diff] [blame] | 27 | static int revs_count; |
Linus Torvalds | 042a4ed | 2005-06-26 11:34:30 -0700 | [diff] [blame] | 28 | |
Linus Torvalds | 921d865 | 2005-06-13 11:14:20 -0700 | [diff] [blame] | 29 | /* |
| 30 | * Some arguments are relevant "revision" arguments, |
| 31 | * others are about output format or other details. |
| 32 | * This sorts it all out. |
| 33 | */ |
| 34 | static int is_rev_argument(const char *arg) |
| 35 | { |
| 36 | static const char *rev_args[] = { |
Junio C Hamano | e091eb9 | 2005-10-05 14:49:54 -0700 | [diff] [blame] | 37 | "--all", |
Junio C Hamano | 5ccfb75 | 2005-08-08 19:31:37 -0700 | [diff] [blame] | 38 | "--bisect", |
Junio C Hamano | 5a83f3b | 2005-10-30 01:08:35 -0800 | [diff] [blame] | 39 | "--dense", |
Sean | a62be77 | 2006-05-13 21:43:00 -0400 | [diff] [blame] | 40 | "--branches", |
Junio C Hamano | 4866ccf | 2005-08-24 14:30:04 -0700 | [diff] [blame] | 41 | "--header", |
| 42 | "--max-age=", |
| 43 | "--max-count=", |
Junio C Hamano | 4866ccf | 2005-08-24 14:30:04 -0700 | [diff] [blame] | 44 | "--min-age=", |
Junio C Hamano | 5ccfb75 | 2005-08-08 19:31:37 -0700 | [diff] [blame] | 45 | "--no-merges", |
Junio C Hamano | 4866ccf | 2005-08-24 14:30:04 -0700 | [diff] [blame] | 46 | "--objects", |
Junio C Hamano | c649657 | 2006-02-19 03:32:31 -0800 | [diff] [blame] | 47 | "--objects-edge", |
Junio C Hamano | 4866ccf | 2005-08-24 14:30:04 -0700 | [diff] [blame] | 48 | "--parents", |
| 49 | "--pretty", |
Sean | a62be77 | 2006-05-13 21:43:00 -0400 | [diff] [blame] | 50 | "--remotes", |
Junio C Hamano | 5a83f3b | 2005-10-30 01:08:35 -0800 | [diff] [blame] | 51 | "--sparse", |
Sean | a62be77 | 2006-05-13 21:43:00 -0400 | [diff] [blame] | 52 | "--tags", |
Junio C Hamano | 4866ccf | 2005-08-24 14:30:04 -0700 | [diff] [blame] | 53 | "--topo-order", |
Junio C Hamano | 4c8725f | 2006-02-15 22:05:33 -0800 | [diff] [blame] | 54 | "--date-order", |
Junio C Hamano | 4866ccf | 2005-08-24 14:30:04 -0700 | [diff] [blame] | 55 | "--unpacked", |
Linus Torvalds | 921d865 | 2005-06-13 11:14:20 -0700 | [diff] [blame] | 56 | NULL |
| 57 | }; |
| 58 | const char **p = rev_args; |
| 59 | |
Eric Wong | 8233340 | 2006-01-29 16:28:02 -0800 | [diff] [blame] | 60 | /* accept -<digit>, like traditional "head" */ |
| 61 | if ((*arg == '-') && isdigit(arg[1])) |
| 62 | return 1; |
| 63 | |
Linus Torvalds | 921d865 | 2005-06-13 11:14:20 -0700 | [diff] [blame] | 64 | for (;;) { |
| 65 | const char *str = *p++; |
| 66 | int len; |
| 67 | if (!str) |
| 68 | return 0; |
| 69 | len = strlen(str); |
Junio C Hamano | 4866ccf | 2005-08-24 14:30:04 -0700 | [diff] [blame] | 70 | if (!strcmp(arg, str) || |
| 71 | (str[len-1] == '=' && !strncmp(arg, str, len))) |
Linus Torvalds | 921d865 | 2005-06-13 11:14:20 -0700 | [diff] [blame] | 72 | return 1; |
| 73 | } |
| 74 | } |
| 75 | |
Junio C Hamano | 4866ccf | 2005-08-24 14:30:04 -0700 | [diff] [blame] | 76 | /* Output argument as a string, either SQ or normal */ |
Junio C Hamano | 5bb2c65 | 2005-07-22 19:08:32 -0700 | [diff] [blame] | 77 | static void show(const char *arg) |
| 78 | { |
| 79 | if (output_sq) { |
| 80 | int sq = '\'', ch; |
| 81 | |
| 82 | putchar(sq); |
| 83 | while ((ch = *arg++)) { |
| 84 | if (ch == sq) |
| 85 | fputs("'\\'", stdout); |
| 86 | putchar(ch); |
| 87 | } |
| 88 | putchar(sq); |
| 89 | putchar(' '); |
| 90 | } |
| 91 | else |
| 92 | puts(arg); |
| 93 | } |
| 94 | |
Junio C Hamano | 4866ccf | 2005-08-24 14:30:04 -0700 | [diff] [blame] | 95 | /* Output a revision, only if filter allows it */ |
Junio C Hamano | 30b96fc | 2005-08-16 12:36:46 -0700 | [diff] [blame] | 96 | static void show_rev(int type, const unsigned char *sha1, const char *name) |
Linus Torvalds | 023d66e | 2005-06-24 10:12:55 -0700 | [diff] [blame] | 97 | { |
Junio C Hamano | 4866ccf | 2005-08-24 14:30:04 -0700 | [diff] [blame] | 98 | if (!(filter & DO_REVS)) |
Linus Torvalds | 023d66e | 2005-06-24 10:12:55 -0700 | [diff] [blame] | 99 | return; |
Junio C Hamano | 4866ccf | 2005-08-24 14:30:04 -0700 | [diff] [blame] | 100 | def = NULL; |
| 101 | revs_count++; |
Junio C Hamano | 5bb2c65 | 2005-07-22 19:08:32 -0700 | [diff] [blame] | 102 | |
Junio C Hamano | 30b96fc | 2005-08-16 12:36:46 -0700 | [diff] [blame] | 103 | if (type != show_type) |
| 104 | putchar('^'); |
| 105 | if (symbolic && name) |
| 106 | show(name); |
Junio C Hamano | d501250 | 2006-01-25 01:35:38 -0800 | [diff] [blame] | 107 | else if (abbrev) |
| 108 | show(find_unique_abbrev(sha1, abbrev)); |
Junio C Hamano | 30b96fc | 2005-08-16 12:36:46 -0700 | [diff] [blame] | 109 | else |
| 110 | show(sha1_to_hex(sha1)); |
Linus Torvalds | 023d66e | 2005-06-24 10:12:55 -0700 | [diff] [blame] | 111 | } |
| 112 | |
Junio C Hamano | 4866ccf | 2005-08-24 14:30:04 -0700 | [diff] [blame] | 113 | /* Output a flag, only if filter allows it. */ |
Junio C Hamano | 16cee38 | 2006-06-05 22:36:21 -0700 | [diff] [blame] | 114 | static int show_flag(const char *arg) |
Linus Torvalds | 023d66e | 2005-06-24 10:12:55 -0700 | [diff] [blame] | 115 | { |
Junio C Hamano | 4866ccf | 2005-08-24 14:30:04 -0700 | [diff] [blame] | 116 | if (!(filter & DO_FLAGS)) |
Linus Torvalds | 9523a4c | 2006-02-05 11:58:34 -0800 | [diff] [blame] | 117 | return 0; |
| 118 | if (filter & (is_rev_argument(arg) ? DO_REVS : DO_NOREV)) { |
Linus Torvalds | 0360e99 | 2005-08-23 10:47:54 -0700 | [diff] [blame] | 119 | show(arg); |
Linus Torvalds | 9523a4c | 2006-02-05 11:58:34 -0800 | [diff] [blame] | 120 | return 1; |
| 121 | } |
| 122 | return 0; |
Linus Torvalds | 023d66e | 2005-06-24 10:12:55 -0700 | [diff] [blame] | 123 | } |
| 124 | |
Linus Torvalds | 023d66e | 2005-06-24 10:12:55 -0700 | [diff] [blame] | 125 | static void show_default(void) |
| 126 | { |
Junio C Hamano | 16cee38 | 2006-06-05 22:36:21 -0700 | [diff] [blame] | 127 | const char *s = def; |
Linus Torvalds | 023d66e | 2005-06-24 10:12:55 -0700 | [diff] [blame] | 128 | |
| 129 | if (s) { |
| 130 | unsigned char sha1[20]; |
| 131 | |
| 132 | def = NULL; |
Junio C Hamano | 9938af6 | 2005-08-03 22:15:49 -0700 | [diff] [blame] | 133 | if (!get_sha1(s, sha1)) { |
Junio C Hamano | 30b96fc | 2005-08-16 12:36:46 -0700 | [diff] [blame] | 134 | show_rev(NORMAL, sha1, s); |
Linus Torvalds | 023d66e | 2005-06-24 10:12:55 -0700 | [diff] [blame] | 135 | return; |
| 136 | } |
Linus Torvalds | 023d66e | 2005-06-24 10:12:55 -0700 | [diff] [blame] | 137 | } |
| 138 | } |
| 139 | |
Junio C Hamano | 8da1977 | 2006-09-20 22:02:01 -0700 | [diff] [blame^] | 140 | static int show_reference(const char *refname, const unsigned char *sha1, int flag, void *cb_data) |
Linus Torvalds | 960bba0 | 2005-07-03 13:07:52 -0700 | [diff] [blame] | 141 | { |
Junio C Hamano | 30b96fc | 2005-08-16 12:36:46 -0700 | [diff] [blame] | 142 | show_rev(NORMAL, sha1, refname); |
Linus Torvalds | 960bba0 | 2005-07-03 13:07:52 -0700 | [diff] [blame] | 143 | return 0; |
| 144 | } |
| 145 | |
Linus Torvalds | c1babb1 | 2005-09-20 14:13:24 -0700 | [diff] [blame] | 146 | static void show_datestring(const char *flag, const char *datestr) |
| 147 | { |
Linus Torvalds | c1babb1 | 2005-09-20 14:13:24 -0700 | [diff] [blame] | 148 | static char buffer[100]; |
Linus Torvalds | c1babb1 | 2005-09-20 14:13:24 -0700 | [diff] [blame] | 149 | |
| 150 | /* date handling requires both flags and revs */ |
| 151 | if ((filter & (DO_FLAGS | DO_REVS)) != (DO_FLAGS | DO_REVS)) |
| 152 | return; |
Linus Torvalds | 3c07b1d | 2005-11-14 19:29:06 -0800 | [diff] [blame] | 153 | snprintf(buffer, sizeof(buffer), "%s%lu", flag, approxidate(datestr)); |
Linus Torvalds | c1babb1 | 2005-09-20 14:13:24 -0700 | [diff] [blame] | 154 | show(buffer); |
| 155 | } |
| 156 | |
Linus Torvalds | 9ad0a93 | 2006-02-05 21:41:47 -0800 | [diff] [blame] | 157 | static int show_file(const char *arg) |
Linus Torvalds | 7a3dd47 | 2005-10-18 00:16:45 -0700 | [diff] [blame] | 158 | { |
Linus Torvalds | 7b34c2f | 2005-10-25 15:24:55 -0700 | [diff] [blame] | 159 | show_default(); |
Linus Torvalds | 9ad0a93 | 2006-02-05 21:41:47 -0800 | [diff] [blame] | 160 | if ((filter & (DO_NONFLAGS|DO_NOREV)) == (DO_NONFLAGS|DO_NOREV)) { |
Linus Torvalds | 7a3dd47 | 2005-10-18 00:16:45 -0700 | [diff] [blame] | 161 | show(arg); |
Linus Torvalds | 9ad0a93 | 2006-02-05 21:41:47 -0800 | [diff] [blame] | 162 | return 1; |
| 163 | } |
| 164 | return 0; |
Linus Torvalds | 7a3dd47 | 2005-10-18 00:16:45 -0700 | [diff] [blame] | 165 | } |
| 166 | |
Junio C Hamano | b7d936b | 2006-07-06 00:16:35 -0700 | [diff] [blame] | 167 | static int try_difference(const char *arg) |
Santi BĂ©jar | 3dd4e73 | 2006-07-04 11:02:22 +0200 | [diff] [blame] | 168 | { |
| 169 | char *dotdot; |
| 170 | unsigned char sha1[20]; |
| 171 | unsigned char end[20]; |
| 172 | const char *next; |
| 173 | const char *this; |
| 174 | int symmetric; |
| 175 | |
| 176 | if (!(dotdot = strstr(arg, ".."))) |
| 177 | return 0; |
| 178 | next = dotdot + 2; |
| 179 | this = arg; |
| 180 | symmetric = (*next == '.'); |
| 181 | |
| 182 | *dotdot = 0; |
| 183 | next += symmetric; |
| 184 | |
| 185 | if (!*next) |
| 186 | next = "HEAD"; |
| 187 | if (dotdot == arg) |
| 188 | this = "HEAD"; |
| 189 | if (!get_sha1(this, sha1) && !get_sha1(next, end)) { |
| 190 | show_rev(NORMAL, end, next); |
| 191 | show_rev(symmetric ? NORMAL : REVERSED, sha1, this); |
| 192 | if (symmetric) { |
| 193 | struct commit_list *exclude; |
| 194 | struct commit *a, *b; |
| 195 | a = lookup_commit_reference(sha1); |
| 196 | b = lookup_commit_reference(end); |
| 197 | exclude = get_merge_bases(a, b, 1); |
| 198 | while (exclude) { |
| 199 | struct commit_list *n = exclude->next; |
| 200 | show_rev(REVERSED, |
| 201 | exclude->item->object.sha1,NULL); |
| 202 | free(exclude); |
| 203 | exclude = n; |
| 204 | } |
| 205 | } |
| 206 | return 1; |
| 207 | } |
| 208 | *dotdot = '.'; |
| 209 | return 0; |
| 210 | } |
| 211 | |
Linus Torvalds | a633fca | 2006-07-28 22:44:25 -0700 | [diff] [blame] | 212 | int cmd_rev_parse(int argc, const char **argv, const char *prefix) |
Linus Torvalds | 178cb24 | 2005-06-13 10:06:50 -0700 | [diff] [blame] | 213 | { |
Junio C Hamano | 4866ccf | 2005-08-24 14:30:04 -0700 | [diff] [blame] | 214 | int i, as_is = 0, verify = 0; |
Linus Torvalds | 178cb24 | 2005-06-13 10:06:50 -0700 | [diff] [blame] | 215 | unsigned char sha1[20]; |
Sean | a62be77 | 2006-05-13 21:43:00 -0400 | [diff] [blame] | 216 | |
Junio C Hamano | 84a9b58 | 2006-03-23 23:41:18 -0800 | [diff] [blame] | 217 | git_config(git_default_config); |
| 218 | |
Linus Torvalds | 178cb24 | 2005-06-13 10:06:50 -0700 | [diff] [blame] | 219 | for (i = 1; i < argc; i++) { |
Junio C Hamano | 16cee38 | 2006-06-05 22:36:21 -0700 | [diff] [blame] | 220 | const char *arg = argv[i]; |
Linus Torvalds | fb18a2e | 2006-03-26 16:28:20 -0800 | [diff] [blame] | 221 | |
Linus Torvalds | 178cb24 | 2005-06-13 10:06:50 -0700 | [diff] [blame] | 222 | if (as_is) { |
Linus Torvalds | fb18a2e | 2006-03-26 16:28:20 -0800 | [diff] [blame] | 223 | if (show_file(arg) && as_is < 2) |
Linus Torvalds | e23d0b4 | 2006-04-26 10:15:54 -0700 | [diff] [blame] | 224 | verify_filename(prefix, arg); |
Linus Torvalds | 178cb24 | 2005-06-13 10:06:50 -0700 | [diff] [blame] | 225 | continue; |
| 226 | } |
Eric Wong | 3af0698 | 2006-01-29 16:26:40 -0800 | [diff] [blame] | 227 | if (!strcmp(arg,"-n")) { |
| 228 | if (++i >= argc) |
| 229 | die("-n requires an argument"); |
| 230 | if ((filter & DO_FLAGS) && (filter & DO_REVS)) { |
| 231 | show(arg); |
| 232 | show(argv[i]); |
| 233 | } |
| 234 | continue; |
| 235 | } |
| 236 | if (!strncmp(arg,"-n",2)) { |
| 237 | if ((filter & DO_FLAGS) && (filter & DO_REVS)) |
| 238 | show(arg); |
| 239 | continue; |
| 240 | } |
| 241 | |
Linus Torvalds | 178cb24 | 2005-06-13 10:06:50 -0700 | [diff] [blame] | 242 | if (*arg == '-') { |
| 243 | if (!strcmp(arg, "--")) { |
Linus Torvalds | fb18a2e | 2006-03-26 16:28:20 -0800 | [diff] [blame] | 244 | as_is = 2; |
Linus Torvalds | a08b650 | 2005-10-20 17:16:30 -0700 | [diff] [blame] | 245 | /* Pass on the "--" if we show anything but files.. */ |
| 246 | if (filter & (DO_FLAGS | DO_REVS)) |
| 247 | show_file(arg); |
Junio C Hamano | 4866ccf | 2005-08-24 14:30:04 -0700 | [diff] [blame] | 248 | continue; |
Linus Torvalds | 178cb24 | 2005-06-13 10:06:50 -0700 | [diff] [blame] | 249 | } |
| 250 | if (!strcmp(arg, "--default")) { |
Linus Torvalds | 178cb24 | 2005-06-13 10:06:50 -0700 | [diff] [blame] | 251 | def = argv[i+1]; |
| 252 | i++; |
| 253 | continue; |
| 254 | } |
Linus Torvalds | 8ebb018 | 2005-06-13 10:21:11 -0700 | [diff] [blame] | 255 | if (!strcmp(arg, "--revs-only")) { |
Junio C Hamano | 4866ccf | 2005-08-24 14:30:04 -0700 | [diff] [blame] | 256 | filter &= ~DO_NOREV; |
Linus Torvalds | 8ebb018 | 2005-06-13 10:21:11 -0700 | [diff] [blame] | 257 | continue; |
| 258 | } |
| 259 | if (!strcmp(arg, "--no-revs")) { |
Junio C Hamano | 4866ccf | 2005-08-24 14:30:04 -0700 | [diff] [blame] | 260 | filter &= ~DO_REVS; |
Linus Torvalds | 8ebb018 | 2005-06-13 10:21:11 -0700 | [diff] [blame] | 261 | continue; |
| 262 | } |
Linus Torvalds | f79b65a | 2005-07-06 10:08:08 -0700 | [diff] [blame] | 263 | if (!strcmp(arg, "--flags")) { |
Junio C Hamano | 4866ccf | 2005-08-24 14:30:04 -0700 | [diff] [blame] | 264 | filter &= ~DO_NONFLAGS; |
Linus Torvalds | f79b65a | 2005-07-06 10:08:08 -0700 | [diff] [blame] | 265 | continue; |
| 266 | } |
| 267 | if (!strcmp(arg, "--no-flags")) { |
Junio C Hamano | 4866ccf | 2005-08-24 14:30:04 -0700 | [diff] [blame] | 268 | filter &= ~DO_FLAGS; |
Linus Torvalds | f79b65a | 2005-07-06 10:08:08 -0700 | [diff] [blame] | 269 | continue; |
| 270 | } |
Linus Torvalds | 023d66e | 2005-06-24 10:12:55 -0700 | [diff] [blame] | 271 | if (!strcmp(arg, "--verify")) { |
Junio C Hamano | 4866ccf | 2005-08-24 14:30:04 -0700 | [diff] [blame] | 272 | filter &= ~(DO_FLAGS|DO_NOREV); |
| 273 | verify = 1; |
Linus Torvalds | 023d66e | 2005-06-24 10:12:55 -0700 | [diff] [blame] | 274 | continue; |
Linus Torvalds | 921d865 | 2005-06-13 11:14:20 -0700 | [diff] [blame] | 275 | } |
Junio C Hamano | 62a604b | 2006-01-26 17:02:07 -0800 | [diff] [blame] | 276 | if (!strcmp(arg, "--short") || |
Jonas Fonseca | 44de0da | 2006-02-18 02:10:53 +0100 | [diff] [blame] | 277 | !strncmp(arg, "--short=", 8)) { |
Junio C Hamano | d501250 | 2006-01-25 01:35:38 -0800 | [diff] [blame] | 278 | filter &= ~(DO_FLAGS|DO_NOREV); |
| 279 | verify = 1; |
| 280 | abbrev = DEFAULT_ABBREV; |
Jonas Fonseca | 44de0da | 2006-02-18 02:10:53 +0100 | [diff] [blame] | 281 | if (arg[7] == '=') |
| 282 | abbrev = strtoul(arg + 8, NULL, 10); |
Junio C Hamano | 1dc4fb8 | 2006-01-26 00:48:19 -0800 | [diff] [blame] | 283 | if (abbrev < MINIMUM_ABBREV) |
| 284 | abbrev = MINIMUM_ABBREV; |
| 285 | else if (40 <= abbrev) |
| 286 | abbrev = 40; |
Junio C Hamano | d501250 | 2006-01-25 01:35:38 -0800 | [diff] [blame] | 287 | continue; |
| 288 | } |
Junio C Hamano | 5bb2c65 | 2005-07-22 19:08:32 -0700 | [diff] [blame] | 289 | if (!strcmp(arg, "--sq")) { |
| 290 | output_sq = 1; |
| 291 | continue; |
| 292 | } |
Linus Torvalds | 042a4ed | 2005-06-26 11:34:30 -0700 | [diff] [blame] | 293 | if (!strcmp(arg, "--not")) { |
| 294 | show_type ^= REVERSED; |
| 295 | continue; |
| 296 | } |
Junio C Hamano | 30b96fc | 2005-08-16 12:36:46 -0700 | [diff] [blame] | 297 | if (!strcmp(arg, "--symbolic")) { |
| 298 | symbolic = 1; |
| 299 | continue; |
| 300 | } |
Linus Torvalds | 960bba0 | 2005-07-03 13:07:52 -0700 | [diff] [blame] | 301 | if (!strcmp(arg, "--all")) { |
Junio C Hamano | cb5d709 | 2006-09-20 21:47:42 -0700 | [diff] [blame] | 302 | for_each_ref(show_reference, NULL); |
Linus Torvalds | 960bba0 | 2005-07-03 13:07:52 -0700 | [diff] [blame] | 303 | continue; |
| 304 | } |
Sean | a62be77 | 2006-05-13 21:43:00 -0400 | [diff] [blame] | 305 | if (!strcmp(arg, "--branches")) { |
Junio C Hamano | cb5d709 | 2006-09-20 21:47:42 -0700 | [diff] [blame] | 306 | for_each_branch_ref(show_reference, NULL); |
Sean | a62be77 | 2006-05-13 21:43:00 -0400 | [diff] [blame] | 307 | continue; |
| 308 | } |
| 309 | if (!strcmp(arg, "--tags")) { |
Junio C Hamano | cb5d709 | 2006-09-20 21:47:42 -0700 | [diff] [blame] | 310 | for_each_tag_ref(show_reference, NULL); |
Sean | a62be77 | 2006-05-13 21:43:00 -0400 | [diff] [blame] | 311 | continue; |
| 312 | } |
| 313 | if (!strcmp(arg, "--remotes")) { |
Junio C Hamano | cb5d709 | 2006-09-20 21:47:42 -0700 | [diff] [blame] | 314 | for_each_remote_ref(show_reference, NULL); |
Sean | a62be77 | 2006-05-13 21:43:00 -0400 | [diff] [blame] | 315 | continue; |
| 316 | } |
Linus Torvalds | d288a70 | 2005-08-16 18:06:34 -0700 | [diff] [blame] | 317 | if (!strcmp(arg, "--show-prefix")) { |
Junio C Hamano | 4866ccf | 2005-08-24 14:30:04 -0700 | [diff] [blame] | 318 | if (prefix) |
| 319 | puts(prefix); |
Linus Torvalds | d288a70 | 2005-08-16 18:06:34 -0700 | [diff] [blame] | 320 | continue; |
| 321 | } |
Junio C Hamano | 5f94c73 | 2005-12-22 22:35:38 -0800 | [diff] [blame] | 322 | if (!strcmp(arg, "--show-cdup")) { |
| 323 | const char *pfx = prefix; |
| 324 | while (pfx) { |
| 325 | pfx = strchr(pfx, '/'); |
| 326 | if (pfx) { |
| 327 | pfx++; |
| 328 | printf("../"); |
| 329 | } |
| 330 | } |
| 331 | putchar('\n'); |
| 332 | continue; |
| 333 | } |
Linus Torvalds | a8783ee | 2005-09-18 11:18:30 -0700 | [diff] [blame] | 334 | if (!strcmp(arg, "--git-dir")) { |
| 335 | const char *gitdir = getenv(GIT_DIR_ENVIRONMENT); |
| 336 | static char cwd[PATH_MAX]; |
| 337 | if (gitdir) { |
| 338 | puts(gitdir); |
| 339 | continue; |
| 340 | } |
| 341 | if (!prefix) { |
| 342 | puts(".git"); |
| 343 | continue; |
| 344 | } |
| 345 | if (!getcwd(cwd, PATH_MAX)) |
| 346 | die("unable to get current working directory"); |
| 347 | printf("%s/.git\n", cwd); |
| 348 | continue; |
| 349 | } |
Linus Torvalds | c1babb1 | 2005-09-20 14:13:24 -0700 | [diff] [blame] | 350 | if (!strncmp(arg, "--since=", 8)) { |
| 351 | show_datestring("--max-age=", arg+8); |
| 352 | continue; |
| 353 | } |
| 354 | if (!strncmp(arg, "--after=", 8)) { |
| 355 | show_datestring("--max-age=", arg+8); |
| 356 | continue; |
| 357 | } |
| 358 | if (!strncmp(arg, "--before=", 9)) { |
| 359 | show_datestring("--min-age=", arg+9); |
| 360 | continue; |
| 361 | } |
| 362 | if (!strncmp(arg, "--until=", 8)) { |
| 363 | show_datestring("--min-age=", arg+8); |
| 364 | continue; |
| 365 | } |
Linus Torvalds | 9523a4c | 2006-02-05 11:58:34 -0800 | [diff] [blame] | 366 | if (show_flag(arg) && verify) |
Junio C Hamano | 4866ccf | 2005-08-24 14:30:04 -0700 | [diff] [blame] | 367 | die("Needed a single revision"); |
Linus Torvalds | 178cb24 | 2005-06-13 10:06:50 -0700 | [diff] [blame] | 368 | continue; |
| 369 | } |
Junio C Hamano | 4866ccf | 2005-08-24 14:30:04 -0700 | [diff] [blame] | 370 | |
| 371 | /* Not a flag argument */ |
Santi BĂ©jar | 3dd4e73 | 2006-07-04 11:02:22 +0200 | [diff] [blame] | 372 | if (try_difference(arg)) |
| 373 | continue; |
Junio C Hamano | 9938af6 | 2005-08-03 22:15:49 -0700 | [diff] [blame] | 374 | if (!get_sha1(arg, sha1)) { |
Junio C Hamano | 30b96fc | 2005-08-16 12:36:46 -0700 | [diff] [blame] | 375 | show_rev(NORMAL, sha1, arg); |
Linus Torvalds | 800644c | 2005-06-20 08:29:13 -0700 | [diff] [blame] | 376 | continue; |
| 377 | } |
Junio C Hamano | 9938af6 | 2005-08-03 22:15:49 -0700 | [diff] [blame] | 378 | if (*arg == '^' && !get_sha1(arg+1, sha1)) { |
Junio C Hamano | 30b96fc | 2005-08-16 12:36:46 -0700 | [diff] [blame] | 379 | show_rev(REVERSED, sha1, arg+1); |
Linus Torvalds | 800644c | 2005-06-20 08:29:13 -0700 | [diff] [blame] | 380 | continue; |
| 381 | } |
Linus Torvalds | 9ad0a93 | 2006-02-05 21:41:47 -0800 | [diff] [blame] | 382 | as_is = 1; |
| 383 | if (!show_file(arg)) |
| 384 | continue; |
Junio C Hamano | 4866ccf | 2005-08-24 14:30:04 -0700 | [diff] [blame] | 385 | if (verify) |
| 386 | die("Needed a single revision"); |
Linus Torvalds | e23d0b4 | 2006-04-26 10:15:54 -0700 | [diff] [blame] | 387 | verify_filename(prefix, arg); |
Linus Torvalds | 178cb24 | 2005-06-13 10:06:50 -0700 | [diff] [blame] | 388 | } |
Linus Torvalds | 023d66e | 2005-06-24 10:12:55 -0700 | [diff] [blame] | 389 | show_default(); |
Junio C Hamano | 4866ccf | 2005-08-24 14:30:04 -0700 | [diff] [blame] | 390 | if (verify && revs_count != 1) |
| 391 | die("Needed a single revision"); |
Linus Torvalds | 178cb24 | 2005-06-13 10:06:50 -0700 | [diff] [blame] | 392 | return 0; |
| 393 | } |