]> git.ipfire.org Git - thirdparty/git.git/blame - git.c
mailinfo: read local configuration
[thirdparty/git.git] / git.c
CommitLineData
85023577 1#include "builtin.h"
fd5c363d
TF
2#include "exec_cmd.h"
3#include "help.h"
d8e96fd8 4#include "run-command.h"
8e49d503 5
822a7d50 6const char git_usage_string[] =
44e1e4d6 7 "git [--version] [--help] [-C <path>] [-c name=value]\n"
03a0fb0c 8 " [--exec-path[=<path>]] [--html-path] [--man-path] [--info-path]\n"
9c9b4f2f 9 " [-p | --paginate | --no-pager] [--no-replace-objects] [--bare]\n"
a1bea2c1 10 " [--git-dir=<path>] [--work-tree=<path>] [--namespace=<name>]\n"
62b4698e 11 " <command> [<args>]";
822a7d50 12
b7d96819 13const char git_more_info_string[] =
ad5fe377 14 N_("'git help -a' and 'git help -g' list available subcommands and some\n"
73903d0b
PO
15 "concept guides. See 'git help <command>' or 'git help <concept>'\n"
16 "to read about a specific subcommand or concept.");
b7d96819 17
4e10738a 18static int use_pager = -1;
f655651e 19static char *orig_cwd;
c0562611
NTND
20static const char *env_names[] = {
21 GIT_DIR_ENVIRONMENT,
22 GIT_WORK_TREE_ENVIRONMENT,
23 GIT_IMPLICIT_WORK_TREE_ENVIRONMENT,
24 GIT_PREFIX_ENVIRONMENT
25};
26static char *orig_env[4];
2e1175d4 27static int save_restore_env_balance;
c0562611 28
0d5466d2 29static void save_env_before_alias(void)
c0562611
NTND
30{
31 int i;
2e1175d4
JH
32
33 assert(save_restore_env_balance == 0);
34 save_restore_env_balance = 1;
f655651e 35 orig_cwd = xgetcwd();
c0562611
NTND
36 for (i = 0; i < ARRAY_SIZE(env_names); i++) {
37 orig_env[i] = getenv(env_names[i]);
13092a91 38 orig_env[i] = xstrdup_or_null(orig_env[i]);
c0562611
NTND
39 }
40}
41
57ea7123 42static void restore_env(int external_alias)
c0562611
NTND
43{
44 int i;
2e1175d4
JH
45
46 assert(save_restore_env_balance == 1);
47 save_restore_env_balance = 0;
57ea7123 48 if (!external_alias && orig_cwd && chdir(orig_cwd))
c0562611 49 die_errno("could not move to %s", orig_cwd);
f655651e 50 free(orig_cwd);
c0562611 51 for (i = 0; i < ARRAY_SIZE(env_names); i++) {
57ea7123
NTND
52 if (external_alias &&
53 !strcmp(env_names[i], GIT_PREFIX_ENVIRONMENT))
54 continue;
8384c139 55 if (orig_env[i]) {
c0562611 56 setenv(env_names[i], orig_env[i], 1);
8384c139
JH
57 free(orig_env[i]);
58 } else {
c0562611 59 unsetenv(env_names[i]);
8384c139 60 }
c0562611
NTND
61 }
62}
4e10738a
JK
63
64static void commit_pager_choice(void) {
65 switch (use_pager) {
66 case 0:
67 setenv("GIT_PAGER", "cat", 1);
68 break;
69 case 1:
70 setup_pager();
71 break;
72 default:
73 break;
74 }
75}
76
4b25d091 77static int handle_options(const char ***argv, int *argc, int *envchanged)
4ab243a9 78{
73546c08 79 const char **orig_argv = *argv;
4ab243a9
JS
80
81 while (*argc > 0) {
82 const char *cmd = (*argv)[0];
83 if (cmd[0] != '-')
84 break;
85
6acbcb92
JS
86 /*
87 * For legacy reasons, the "version" and "help"
88 * commands can be written with "--" prepended
89 * to make them look like flags.
90 */
91 if (!strcmp(cmd, "--help") || !strcmp(cmd, "--version"))
92 break;
93
94 /*
95 * Check remaining flags.
96 */
ae021d87 97 if (skip_prefix(cmd, "--exec-path", &cmd)) {
6acbcb92 98 if (*cmd == '=')
384df833 99 git_set_argv_exec_path(cmd + 1);
6acbcb92
JS
100 else {
101 puts(git_exec_path());
102 exit(0);
103 }
89a56bfb
MH
104 } else if (!strcmp(cmd, "--html-path")) {
105 puts(system_path(GIT_HTML_PATH));
106 exit(0);
f2dd8c37
JS
107 } else if (!strcmp(cmd, "--man-path")) {
108 puts(system_path(GIT_MAN_PATH));
109 exit(0);
110 } else if (!strcmp(cmd, "--info-path")) {
111 puts(system_path(GIT_INFO_PATH));
112 exit(0);
6acbcb92 113 } else if (!strcmp(cmd, "-p") || !strcmp(cmd, "--paginate")) {
4e10738a 114 use_pager = 1;
463a849d 115 } else if (!strcmp(cmd, "--no-pager")) {
4e10738a 116 use_pager = 0;
463a849d
MM
117 if (envchanged)
118 *envchanged = 1;
b0fa7ab5 119 } else if (!strcmp(cmd, "--no-replace-objects")) {
afc711b8 120 check_replace_refs = 0;
6476b38b
CC
121 setenv(NO_REPLACE_OBJECTS_ENVIRONMENT, "1", 1);
122 if (envchanged)
123 *envchanged = 1;
6acbcb92 124 } else if (!strcmp(cmd, "--git-dir")) {
c321f00d
BG
125 if (*argc < 2) {
126 fprintf(stderr, "No directory given for --git-dir.\n" );
127 usage(git_usage_string);
128 }
45b09794 129 setenv(GIT_DIR_ENVIRONMENT, (*argv)[1], 1);
4394efec
ML
130 if (envchanged)
131 *envchanged = 1;
6acbcb92
JS
132 (*argv)++;
133 (*argc)--;
ae021d87
JK
134 } else if (skip_prefix(cmd, "--git-dir=", &cmd)) {
135 setenv(GIT_DIR_ENVIRONMENT, cmd, 1);
4394efec
ML
136 if (envchanged)
137 *envchanged = 1;
a1bea2c1
JT
138 } else if (!strcmp(cmd, "--namespace")) {
139 if (*argc < 2) {
140 fprintf(stderr, "No namespace given for --namespace.\n" );
141 usage(git_usage_string);
142 }
143 setenv(GIT_NAMESPACE_ENVIRONMENT, (*argv)[1], 1);
144 if (envchanged)
145 *envchanged = 1;
146 (*argv)++;
147 (*argc)--;
ae021d87
JK
148 } else if (skip_prefix(cmd, "--namespace=", &cmd)) {
149 setenv(GIT_NAMESPACE_ENVIRONMENT, cmd, 1);
a1bea2c1
JT
150 if (envchanged)
151 *envchanged = 1;
892c41b9
ML
152 } else if (!strcmp(cmd, "--work-tree")) {
153 if (*argc < 2) {
154 fprintf(stderr, "No directory given for --work-tree.\n" );
155 usage(git_usage_string);
156 }
157 setenv(GIT_WORK_TREE_ENVIRONMENT, (*argv)[1], 1);
4394efec
ML
158 if (envchanged)
159 *envchanged = 1;
892c41b9
ML
160 (*argv)++;
161 (*argc)--;
ae021d87
JK
162 } else if (skip_prefix(cmd, "--work-tree=", &cmd)) {
163 setenv(GIT_WORK_TREE_ENVIRONMENT, cmd, 1);
4394efec
ML
164 if (envchanged)
165 *envchanged = 1;
74866d75
BW
166 } else if (!strcmp(cmd, "--super-prefix")) {
167 if (*argc < 2) {
168 fprintf(stderr, "No prefix given for --super-prefix.\n" );
169 usage(git_usage_string);
170 }
171 setenv(GIT_SUPER_PREFIX_ENVIRONMENT, (*argv)[1], 1);
172 if (envchanged)
173 *envchanged = 1;
174 (*argv)++;
175 (*argc)--;
176 } else if (skip_prefix(cmd, "--super-prefix=", &cmd)) {
177 setenv(GIT_SUPER_PREFIX_ENVIRONMENT, cmd, 1);
178 if (envchanged)
179 *envchanged = 1;
6acbcb92 180 } else if (!strcmp(cmd, "--bare")) {
4d3ab44d 181 char *cwd = xgetcwd();
6adcca3f 182 is_bare_repository_cfg = 1;
4d3ab44d
RS
183 setenv(GIT_DIR_ENVIRONMENT, cwd, 0);
184 free(cwd);
2cd83d10 185 setenv(GIT_IMPLICIT_WORK_TREE_ENVIRONMENT, "0", 1);
4394efec
ML
186 if (envchanged)
187 *envchanged = 1;
8b1fa778
AR
188 } else if (!strcmp(cmd, "-c")) {
189 if (*argc < 2) {
190 fprintf(stderr, "-c expects a configuration string\n" );
191 usage(git_usage_string);
192 }
2b64fc89 193 git_config_push_parameter((*argv)[1]);
8b1fa778
AR
194 (*argv)++;
195 (*argc)--;
823ab40f
JK
196 } else if (!strcmp(cmd, "--literal-pathspecs")) {
197 setenv(GIT_LITERAL_PATHSPECS_ENVIRONMENT, "1", 1);
198 if (envchanged)
199 *envchanged = 1;
200 } else if (!strcmp(cmd, "--no-literal-pathspecs")) {
201 setenv(GIT_LITERAL_PATHSPECS_ENVIRONMENT, "0", 1);
202 if (envchanged)
203 *envchanged = 1;
bd30c2e4
NTND
204 } else if (!strcmp(cmd, "--glob-pathspecs")) {
205 setenv(GIT_GLOB_PATHSPECS_ENVIRONMENT, "1", 1);
206 if (envchanged)
207 *envchanged = 1;
208 } else if (!strcmp(cmd, "--noglob-pathspecs")) {
209 setenv(GIT_NOGLOB_PATHSPECS_ENVIRONMENT, "1", 1);
210 if (envchanged)
211 *envchanged = 1;
93d93537
NTND
212 } else if (!strcmp(cmd, "--icase-pathspecs")) {
213 setenv(GIT_ICASE_PATHSPECS_ENVIRONMENT, "1", 1);
214 if (envchanged)
215 *envchanged = 1;
6035d6aa
NTND
216 } else if (!strcmp(cmd, "--shallow-file")) {
217 (*argv)++;
218 (*argc)--;
069c0532 219 set_alternate_shallow_file((*argv)[0], 1);
6035d6aa
NTND
220 if (envchanged)
221 *envchanged = 1;
44e1e4d6
NR
222 } else if (!strcmp(cmd, "-C")) {
223 if (*argc < 2) {
224 fprintf(stderr, "No directory given for -C.\n" );
225 usage(git_usage_string);
226 }
6a536e20
KN
227 if ((*argv)[1][0]) {
228 if (chdir((*argv)[1]))
229 die_errno("Cannot change to '%s'", (*argv)[1]);
230 if (envchanged)
231 *envchanged = 1;
232 }
44e1e4d6
NR
233 (*argv)++;
234 (*argc)--;
6acbcb92
JS
235 } else {
236 fprintf(stderr, "Unknown option: %s\n", cmd);
822a7d50 237 usage(git_usage_string);
6acbcb92 238 }
4ab243a9
JS
239
240 (*argv)++;
241 (*argc)--;
4ab243a9 242 }
73546c08 243 return (*argv) - orig_argv;
4ab243a9
JS
244}
245
2b11e317
JS
246static int handle_alias(int *argcp, const char ***argv)
247{
af05d679 248 int envchanged = 0, ret = 0, saved_errno = errno;
0347a8c7 249 int count, option_count;
4b25d091 250 const char **new_argv;
94351118
JK
251 const char *alias_command;
252 char *alias_string;
e85dc0a3 253 int unused_nongit;
2b11e317 254
0d5466d2 255 save_env_before_alias();
86d26f24 256 setup_git_directory_gently(&unused_nongit);
0347a8c7
ML
257
258 alias_command = (*argv)[0];
94351118 259 alias_string = alias_lookup(alias_command);
0347a8c7 260 if (alias_string) {
dfd42a3c 261 if (alias_string[0] == '!') {
850d2fec 262 struct child_process child = CHILD_PROCESS_INIT;
7f51f8bc 263
030149a4 264 commit_pager_choice();
57ea7123 265 restore_env(1);
7f51f8bc 266
850d2fec
JK
267 child.use_shell = 1;
268 argv_array_push(&child.args, alias_string + 1);
269 argv_array_pushv(&child.args, (*argv) + 1);
7f51f8bc 270
850d2fec 271 ret = run_command(&child);
7f51f8bc
EFL
272 if (ret >= 0) /* normal exit */
273 exit(ret);
274
275 die_errno("While expanding alias '%s': '%s'",
276 alias_command, alias_string + 1);
dfd42a3c 277 }
0347a8c7 278 count = split_cmdline(alias_string, &new_argv);
dc4179f9 279 if (count < 0)
ad9ac6db
GB
280 die("Bad alias.%s string: %s", alias_command,
281 split_cmdline_strerror(count));
4394efec
ML
282 option_count = handle_options(&new_argv, &count, &envchanged);
283 if (envchanged)
284 die("alias '%s' changes environment variables\n"
285 "You can use '!git' in the alias to do this.",
286 alias_command);
0347a8c7
ML
287 memmove(new_argv - option_count, new_argv,
288 count * sizeof(char *));
289 new_argv -= option_count;
290
291 if (count < 1)
292 die("empty alias for %s", alias_command);
293
294 if (!strcmp(alias_command, new_argv[0]))
295 die("recursive alias: %s", alias_command);
296
b319ce4c 297 trace_argv_printf(new_argv,
6ce4e61f
CC
298 "trace: alias expansion: %s =>",
299 alias_command);
575ba9d6 300
2756ca43 301 REALLOC_ARRAY(new_argv, count + *argcp);
0347a8c7 302 /* insert after command name */
4b25d091 303 memcpy(new_argv + count, *argv + 1, sizeof(char *) * *argcp);
2b11e317 304
0347a8c7
ML
305 *argv = new_argv;
306 *argcp += count - 1;
2b11e317 307
0347a8c7 308 ret = 1;
2b11e317
JS
309 }
310
57ea7123 311 restore_env(0);
2b11e317 312
47e5c0ca
JS
313 errno = saved_errno;
314
2b11e317
JS
315 return ret;
316}
317
ee38dfb8
NTND
318#define RUN_SETUP (1<<0)
319#define RUN_SETUP_GENTLY (1<<1)
320#define USE_PAGER (1<<2)
7eff28a9
SP
321/*
322 * require working tree to be present -- anything uses this needs
323 * RUN_SETUP for reading from the configuration file.
324 */
ee38dfb8 325#define NEED_WORK_TREE (1<<3)
74866d75 326#define SUPPORT_SUPER_PREFIX (1<<4)
a633fca0 327
47d0b4ff
LT
328struct cmd_struct {
329 const char *cmd;
330 int (*fn)(int, const char **, const char *);
331 int option;
332};
333
f172f334 334static int run_builtin(struct cmd_struct *p, int argc, const char **argv)
47d0b4ff 335{
99caeed0 336 int status, help;
0f157315 337 struct stat st;
47d0b4ff
LT
338 const char *prefix;
339
340 prefix = NULL;
99caeed0
JN
341 help = argc == 2 && !strcmp(argv[1], "-h");
342 if (!help) {
343 if (p->option & RUN_SETUP)
344 prefix = setup_git_directory();
27bd38d4 345 else if (p->option & RUN_SETUP_GENTLY) {
ee38dfb8
NTND
346 int nongit_ok;
347 prefix = setup_git_directory_gently(&nongit_ok);
348 }
99caeed0 349
ee38dfb8 350 if (use_pager == -1 && p->option & (RUN_SETUP | RUN_SETUP_GENTLY))
99caeed0
JN
351 use_pager = check_pager_config(p->cmd);
352 if (use_pager == -1 && p->option & USE_PAGER)
353 use_pager = 1;
a9ca8a85
NTND
354
355 if ((p->option & (RUN_SETUP | RUN_SETUP_GENTLY)) &&
356 startup_info->have_repository) /* get_git_dir() may set up repo, avoid that */
357 trace_repo_setup(prefix);
99caeed0 358 }
4e10738a
JK
359 commit_pager_choice();
360
74866d75
BW
361 if (!help && get_super_prefix()) {
362 if (!(p->option & SUPPORT_SUPER_PREFIX))
363 die("%s doesn't support --super-prefix", p->cmd);
364 if (prefix)
365 die("can't use --super-prefix from a subdirectory");
366 }
367
99caeed0 368 if (!help && p->option & NEED_WORK_TREE)
59f0f2f3
MH
369 setup_work_tree();
370
b319ce4c 371 trace_argv_printf(argv, "trace: built-in: git");
47d0b4ff 372
0f157315
LT
373 status = p->fn(argc, argv, prefix);
374 if (status)
47e3de0e 375 return status;
0f157315
LT
376
377 /* Somebody closed stdout? */
378 if (fstat(fileno(stdout), &st))
379 return 0;
380 /* Ignore write errors for pipes and sockets.. */
381 if (S_ISFIFO(st.st_mode) || S_ISSOCK(st.st_mode))
382 return 0;
383
384 /* Check for ENOSPC and EIO errors.. */
0227f988 385 if (fflush(stdout))
d824cbba 386 die_errno("write failure on standard output");
0227f988
LT
387 if (ferror(stdout))
388 die("unknown write failure on standard output");
389 if (fclose(stdout))
d824cbba 390 die_errno("close failed on standard output");
0f157315 391 return 0;
47d0b4ff
LT
392}
393
c6127fa3
SS
394static struct cmd_struct commands[] = {
395 { "add", cmd_add, RUN_SETUP | NEED_WORK_TREE },
783d7e86 396 { "am", cmd_am, RUN_SETUP | NEED_WORK_TREE },
c6127fa3
SS
397 { "annotate", cmd_annotate, RUN_SETUP },
398 { "apply", cmd_apply, RUN_SETUP_GENTLY },
399 { "archive", cmd_archive },
400 { "bisect--helper", cmd_bisect__helper, RUN_SETUP },
401 { "blame", cmd_blame, RUN_SETUP },
402 { "branch", cmd_branch, RUN_SETUP },
403 { "bundle", cmd_bundle, RUN_SETUP_GENTLY },
404 { "cat-file", cmd_cat_file, RUN_SETUP },
405 { "check-attr", cmd_check_attr, RUN_SETUP },
406 { "check-ignore", cmd_check_ignore, RUN_SETUP | NEED_WORK_TREE },
407 { "check-mailmap", cmd_check_mailmap, RUN_SETUP },
408 { "check-ref-format", cmd_check_ref_format },
0ca560cb 409 { "checkout", cmd_checkout, RUN_SETUP | NEED_WORK_TREE },
c6127fa3
SS
410 { "checkout-index", cmd_checkout_index,
411 RUN_SETUP | NEED_WORK_TREE},
412 { "cherry", cmd_cherry, RUN_SETUP },
413 { "cherry-pick", cmd_cherry_pick, RUN_SETUP | NEED_WORK_TREE },
414 { "clean", cmd_clean, RUN_SETUP | NEED_WORK_TREE },
86d26f24 415 { "clone", cmd_clone },
c6127fa3
SS
416 { "column", cmd_column, RUN_SETUP_GENTLY },
417 { "commit", cmd_commit, RUN_SETUP | NEED_WORK_TREE },
418 { "commit-tree", cmd_commit_tree, RUN_SETUP },
419 { "config", cmd_config, RUN_SETUP_GENTLY },
420 { "count-objects", cmd_count_objects, RUN_SETUP },
421 { "credential", cmd_credential, RUN_SETUP_GENTLY },
422 { "describe", cmd_describe, RUN_SETUP },
423 { "diff", cmd_diff },
424 { "diff-files", cmd_diff_files, RUN_SETUP | NEED_WORK_TREE },
425 { "diff-index", cmd_diff_index, RUN_SETUP },
426 { "diff-tree", cmd_diff_tree, RUN_SETUP },
427 { "fast-export", cmd_fast_export, RUN_SETUP },
428 { "fetch", cmd_fetch, RUN_SETUP },
429 { "fetch-pack", cmd_fetch_pack, RUN_SETUP },
430 { "fmt-merge-msg", cmd_fmt_merge_msg, RUN_SETUP },
431 { "for-each-ref", cmd_for_each_ref, RUN_SETUP },
432 { "format-patch", cmd_format_patch, RUN_SETUP },
433 { "fsck", cmd_fsck, RUN_SETUP },
434 { "fsck-objects", cmd_fsck, RUN_SETUP },
435 { "gc", cmd_gc, RUN_SETUP },
436 { "get-tar-commit-id", cmd_get_tar_commit_id },
437 { "grep", cmd_grep, RUN_SETUP_GENTLY },
438 { "hash-object", cmd_hash_object },
439 { "help", cmd_help },
440 { "index-pack", cmd_index_pack, RUN_SETUP_GENTLY },
86d26f24
NTND
441 { "init", cmd_init_db },
442 { "init-db", cmd_init_db },
cbd9fc23 443 { "interpret-trailers", cmd_interpret_trailers, RUN_SETUP_GENTLY },
c6127fa3 444 { "log", cmd_log, RUN_SETUP },
e77aa336 445 { "ls-files", cmd_ls_files, RUN_SETUP | SUPPORT_SUPER_PREFIX },
c6127fa3
SS
446 { "ls-remote", cmd_ls_remote, RUN_SETUP_GENTLY },
447 { "ls-tree", cmd_ls_tree, RUN_SETUP },
3f0ec068 448 { "mailinfo", cmd_mailinfo, RUN_SETUP_GENTLY },
c6127fa3
SS
449 { "mailsplit", cmd_mailsplit },
450 { "merge", cmd_merge, RUN_SETUP | NEED_WORK_TREE },
451 { "merge-base", cmd_merge_base, RUN_SETUP },
452 { "merge-file", cmd_merge_file, RUN_SETUP_GENTLY },
453 { "merge-index", cmd_merge_index, RUN_SETUP },
454 { "merge-ours", cmd_merge_ours, RUN_SETUP },
455 { "merge-recursive", cmd_merge_recursive, RUN_SETUP | NEED_WORK_TREE },
456 { "merge-recursive-ours", cmd_merge_recursive, RUN_SETUP | NEED_WORK_TREE },
457 { "merge-recursive-theirs", cmd_merge_recursive, RUN_SETUP | NEED_WORK_TREE },
458 { "merge-subtree", cmd_merge_recursive, RUN_SETUP | NEED_WORK_TREE },
459 { "merge-tree", cmd_merge_tree, RUN_SETUP },
460 { "mktag", cmd_mktag, RUN_SETUP },
461 { "mktree", cmd_mktree, RUN_SETUP },
462 { "mv", cmd_mv, RUN_SETUP | NEED_WORK_TREE },
463 { "name-rev", cmd_name_rev, RUN_SETUP },
464 { "notes", cmd_notes, RUN_SETUP },
465 { "pack-objects", cmd_pack_objects, RUN_SETUP },
466 { "pack-redundant", cmd_pack_redundant, RUN_SETUP },
467 { "pack-refs", cmd_pack_refs, RUN_SETUP },
4a73aaaf 468 { "patch-id", cmd_patch_id, RUN_SETUP_GENTLY },
c6127fa3
SS
469 { "pickaxe", cmd_blame, RUN_SETUP },
470 { "prune", cmd_prune, RUN_SETUP },
471 { "prune-packed", cmd_prune_packed, RUN_SETUP },
1e1ea69f 472 { "pull", cmd_pull, RUN_SETUP | NEED_WORK_TREE },
c6127fa3
SS
473 { "push", cmd_push, RUN_SETUP },
474 { "read-tree", cmd_read_tree, RUN_SETUP },
475 { "receive-pack", cmd_receive_pack },
476 { "reflog", cmd_reflog, RUN_SETUP },
477 { "remote", cmd_remote, RUN_SETUP },
478 { "remote-ext", cmd_remote_ext },
479 { "remote-fd", cmd_remote_fd },
480 { "repack", cmd_repack, RUN_SETUP },
481 { "replace", cmd_replace, RUN_SETUP },
482 { "rerere", cmd_rerere, RUN_SETUP },
483 { "reset", cmd_reset, RUN_SETUP },
484 { "rev-list", cmd_rev_list, RUN_SETUP },
485 { "rev-parse", cmd_rev_parse },
486 { "revert", cmd_revert, RUN_SETUP | NEED_WORK_TREE },
487 { "rm", cmd_rm, RUN_SETUP },
488 { "send-pack", cmd_send_pack, RUN_SETUP },
489 { "shortlog", cmd_shortlog, RUN_SETUP_GENTLY | USE_PAGER },
490 { "show", cmd_show, RUN_SETUP },
491 { "show-branch", cmd_show_branch, RUN_SETUP },
492 { "show-ref", cmd_show_ref, RUN_SETUP },
493 { "stage", cmd_add, RUN_SETUP | NEED_WORK_TREE },
494 { "status", cmd_status, RUN_SETUP | NEED_WORK_TREE },
495 { "stripspace", cmd_stripspace },
74703a1e 496 { "submodule--helper", cmd_submodule__helper, RUN_SETUP },
c6127fa3
SS
497 { "symbolic-ref", cmd_symbolic_ref, RUN_SETUP },
498 { "tag", cmd_tag, RUN_SETUP },
499 { "unpack-file", cmd_unpack_file, RUN_SETUP },
500 { "unpack-objects", cmd_unpack_objects, RUN_SETUP },
501 { "update-index", cmd_update_index, RUN_SETUP },
502 { "update-ref", cmd_update_ref, RUN_SETUP },
503 { "update-server-info", cmd_update_server_info, RUN_SETUP },
504 { "upload-archive", cmd_upload_archive },
505 { "upload-archive--writer", cmd_upload_archive_writer },
506 { "var", cmd_var, RUN_SETUP_GENTLY },
d07b00b7 507 { "verify-commit", cmd_verify_commit, RUN_SETUP },
c6127fa3
SS
508 { "verify-pack", cmd_verify_pack },
509 { "verify-tag", cmd_verify_tag, RUN_SETUP },
510 { "version", cmd_version },
511 { "whatchanged", cmd_whatchanged, RUN_SETUP },
df0b6cfb 512 { "worktree", cmd_worktree, RUN_SETUP },
c6127fa3
SS
513 { "write-tree", cmd_write_tree, RUN_SETUP },
514};
515
c4f901d1 516static struct cmd_struct *get_builtin(const char *s)
c6127fa3
SS
517{
518 int i;
519 for (i = 0; i < ARRAY_SIZE(commands); i++) {
c4f901d1 520 struct cmd_struct *p = commands + i;
c6127fa3 521 if (!strcmp(s, p->cmd))
c4f901d1 522 return p;
c6127fa3 523 }
c4f901d1
SV
524 return NULL;
525}
526
527int is_builtin(const char *s)
528{
529 return !!get_builtin(s);
c6127fa3
SS
530}
531
63ca1c09
AK
532#ifdef STRIP_EXTENSION
533static void strip_extension(const char **argv)
534{
535 size_t len;
536
537 if (strip_suffix(argv[0], STRIP_EXTENSION, &len))
538 argv[0] = xmemdupz(argv[0], len);
539}
540#else
541#define strip_extension(cmd)
542#endif
543
3f784a4d 544static void handle_builtin(int argc, const char **argv)
231af832 545{
2c6b6d9f 546 struct argv_array args = ARGV_ARRAY_INIT;
63ca1c09 547 const char *cmd;
c4f901d1 548 struct cmd_struct *builtin;
23326d14 549
63ca1c09
AK
550 strip_extension(argv);
551 cmd = argv[0];
231af832 552
2c6b6d9f 553 /* Turn "git cmd --help" into "git help --exclude-guides cmd" */
1cd95087 554 if (argc > 1 && !strcmp(argv[1], "--help")) {
2c6b6d9f
RT
555 int i;
556
1cd95087
LT
557 argv[1] = argv[0];
558 argv[0] = cmd = "help";
2c6b6d9f
RT
559
560 for (i = 0; i < argc; i++) {
561 argv_array_push(&args, argv[i]);
562 if (!i)
563 argv_array_push(&args, "--exclude-guides");
564 }
565
566 argc++;
567 argv = args.argv;
1cd95087
LT
568 }
569
c4f901d1 570 builtin = get_builtin(cmd);
441981bc
JH
571 if (builtin)
572 exit(run_builtin(builtin, argc, argv));
2c6b6d9f 573 argv_array_clear(&args);
231af832
LT
574}
575
7550be0a
JH
576static void execv_dashed_external(const char **argv)
577{
f285a2d7 578 struct strbuf cmd = STRBUF_INIT;
7550be0a 579 const char *tmp;
d8e96fd8 580 int status;
7550be0a 581
74866d75
BW
582 if (get_super_prefix())
583 die("%s doesn't support --super-prefix", argv[0]);
584
92058e4d
JK
585 if (use_pager == -1)
586 use_pager = check_pager_config(argv[0]);
030149a4
JN
587 commit_pager_choice();
588
7550be0a
JH
589 strbuf_addf(&cmd, "git-%s", argv[0]);
590
591 /*
592 * argv[0] must be the git command, but the argv array
593 * belongs to the caller, and may be reused in
594 * subsequent loop iterations. Save argv[0] and
595 * restore it on error.
596 */
597 tmp = argv[0];
598 argv[0] = cmd.buf;
599
600 trace_argv_printf(argv, "trace: exec:");
601
d8e96fd8
JK
602 /*
603 * if we fail because the command is not found, it is
604 * OK to return. Otherwise, we just pass along the status code.
605 */
10c6cddd 606 status = run_command_v_opt(argv, RUN_SILENT_EXEC_FAILURE | RUN_CLEAN_ON_EXIT);
0ac77ec3 607 if (status >= 0 || errno != ENOENT)
5709e036 608 exit(status);
7550be0a
JH
609
610 argv[0] = tmp;
611
612 strbuf_release(&cmd);
613}
614
a907e1b6
AS
615static int run_argv(int *argcp, const char ***argv)
616{
617 int done_alias = 0;
618
619 while (1) {
441981bc
JH
620 /*
621 * If we tried alias and futzed with our environment,
622 * it no longer is safe to invoke builtins directly in
623 * general. We have to spawn them as dashed externals.
624 *
625 * NEEDSWORK: if we can figure out cases
626 * where it is safe to do, we can avoid spawning a new
627 * process.
628 */
629 if (!done_alias)
630 handle_builtin(*argcp, *argv);
a907e1b6
AS
631
632 /* .. then try the external ones */
633 execv_dashed_external(*argv);
634
635 /* It could be an alias -- this works around the insanity
636 * of overriding "git log" with "git show" by having
637 * alias.log = show
638 */
c0562611
NTND
639 if (done_alias)
640 break;
c0562611 641 if (!handle_alias(argcp, argv))
a907e1b6
AS
642 break;
643 done_alias = 1;
644 }
645
646 return done_alias;
647}
648
3f2e2297 649int cmd_main(int argc, const char **argv)
8e49d503 650{
4dd47c3b 651 const char *cmd;
8fa7975b 652 int done_help = 0;
231af832 653
650c4492 654 cmd = argv[0];
2cd72b0b 655 if (!cmd)
4dd47c3b 656 cmd = "git-help";
8e49d503 657
578da039
KB
658 trace_command_performance(argv);
659
231af832
LT
660 /*
661 * "git-xxxx" is the same as "git xxxx", but we obviously:
662 *
663 * - cannot take flags in between the "git" and the "xxxx".
664 * - cannot execute it externally (since it would just do
665 * the same thing over again)
666 *
3f784a4d
SS
667 * So we just directly call the builtin handler, and die if
668 * that one cannot handle it.
231af832 669 */
ae021d87 670 if (skip_prefix(cmd, "git-", &cmd)) {
231af832 671 argv[0] = cmd;
3f784a4d
SS
672 handle_builtin(argc, argv);
673 die("cannot handle %s as a builtin", cmd);
231af832 674 }
8e49d503 675
231af832 676 /* Look for flags.. */
6acbcb92
JS
677 argv++;
678 argc--;
4394efec 679 handle_options(&argv, &argc, NULL);
6acbcb92 680 if (argc > 0) {
6d877803
JK
681 /* translate --help and --version into commands */
682 skip_prefix(argv[0], "--", &argv[0]);
6acbcb92 683 } else {
3d7e2d85 684 /* The user didn't specify a command; give them help */
73e25e7c 685 commit_pager_choice();
3d7e2d85
SP
686 printf("usage: %s\n\n", git_usage_string);
687 list_common_cmds_help();
421a9769 688 printf("\n%s\n", _(git_more_info_string));
3d7e2d85 689 exit(1);
97fc6c5f 690 }
6acbcb92 691 cmd = argv[0];
231af832
LT
692
693 /*
511707d4 694 * We use PATH to find git commands, but we prepend some higher
3ea3c215 695 * precedence paths: the "--exec-path" option, the GIT_EXEC_PATH
511707d4
SP
696 * environment, and the $(gitexecdir) from the Makefile at build
697 * time.
231af832 698 */
e1464ca7 699 setup_path();
8e49d503 700
a025463b 701 while (1) {
8fa7975b 702 int was_alias = run_argv(&argc, &argv);
a907e1b6 703 if (errno != ENOENT)
a025463b 704 break;
a907e1b6 705 if (was_alias) {
f3dd015c 706 fprintf(stderr, "Expansion of alias '%s' failed; "
7283bbc7 707 "'%s' is not a git command\n",
f3dd015c
TT
708 cmd, argv[0]);
709 exit(1);
710 }
a907e1b6
AS
711 if (!done_help) {
712 cmd = argv[0] = help_unknown_cmd(cmd);
713 done_help = 1;
714 } else
715 break;
f3dd015c 716 }
10b15b86
AR
717
718 fprintf(stderr, "Failed to run command '%s': %s\n",
33ebb871 719 cmd, strerror(errno));
8e49d503
AE
720
721 return 1;
722}