git.c: make it clear save_env() is for alias handling only
[git] / git.c
1 #include "builtin.h"
2 #include "exec_cmd.h"
3 #include "help.h"
4 #include "run-command.h"
5
6 const char git_usage_string[] =
7         "git [--version] [--help] [-C <path>] [-c name=value]\n"
8         "           [--exec-path[=<path>]] [--html-path] [--man-path] [--info-path]\n"
9         "           [-p | --paginate | --no-pager] [--no-replace-objects] [--bare]\n"
10         "           [--git-dir=<path>] [--work-tree=<path>] [--namespace=<name>]\n"
11         "           <command> [<args>]";
12
13 const char git_more_info_string[] =
14         N_("'git help -a' and 'git help -g' list available subcommands and some\n"
15            "concept guides. See 'git help <command>' or 'git help <concept>'\n"
16            "to read about a specific subcommand or concept.");
17
18 static struct startup_info git_startup_info;
19 static int use_pager = -1;
20 static char *orig_cwd;
21 static const char *env_names[] = {
22         GIT_DIR_ENVIRONMENT,
23         GIT_WORK_TREE_ENVIRONMENT,
24         GIT_IMPLICIT_WORK_TREE_ENVIRONMENT,
25         GIT_PREFIX_ENVIRONMENT
26 };
27 static char *orig_env[4];
28 static int saved_env_before_alias;
29
30 static void save_env_before_alias(void)
31 {
32         int i;
33         if (saved_env_before_alias)
34                 return;
35         saved_env_before_alias = 1;
36         orig_cwd = xgetcwd();
37         for (i = 0; i < ARRAY_SIZE(env_names); i++) {
38                 orig_env[i] = getenv(env_names[i]);
39                 if (orig_env[i])
40                         orig_env[i] = xstrdup(orig_env[i]);
41         }
42 }
43
44 static void restore_env(void)
45 {
46         int i;
47         if (orig_cwd && chdir(orig_cwd))
48                 die_errno("could not move to %s", orig_cwd);
49         free(orig_cwd);
50         for (i = 0; i < ARRAY_SIZE(env_names); i++) {
51                 if (orig_env[i])
52                         setenv(env_names[i], orig_env[i], 1);
53                 else
54                         unsetenv(env_names[i]);
55         }
56 }
57
58 static void commit_pager_choice(void) {
59         switch (use_pager) {
60         case 0:
61                 setenv("GIT_PAGER", "cat", 1);
62                 break;
63         case 1:
64                 setup_pager();
65                 break;
66         default:
67                 break;
68         }
69 }
70
71 static int handle_options(const char ***argv, int *argc, int *envchanged)
72 {
73         const char **orig_argv = *argv;
74
75         while (*argc > 0) {
76                 const char *cmd = (*argv)[0];
77                 if (cmd[0] != '-')
78                         break;
79
80                 /*
81                  * For legacy reasons, the "version" and "help"
82                  * commands can be written with "--" prepended
83                  * to make them look like flags.
84                  */
85                 if (!strcmp(cmd, "--help") || !strcmp(cmd, "--version"))
86                         break;
87
88                 /*
89                  * Check remaining flags.
90                  */
91                 if (skip_prefix(cmd, "--exec-path", &cmd)) {
92                         if (*cmd == '=')
93                                 git_set_argv_exec_path(cmd + 1);
94                         else {
95                                 puts(git_exec_path());
96                                 exit(0);
97                         }
98                 } else if (!strcmp(cmd, "--html-path")) {
99                         puts(system_path(GIT_HTML_PATH));
100                         exit(0);
101                 } else if (!strcmp(cmd, "--man-path")) {
102                         puts(system_path(GIT_MAN_PATH));
103                         exit(0);
104                 } else if (!strcmp(cmd, "--info-path")) {
105                         puts(system_path(GIT_INFO_PATH));
106                         exit(0);
107                 } else if (!strcmp(cmd, "-p") || !strcmp(cmd, "--paginate")) {
108                         use_pager = 1;
109                 } else if (!strcmp(cmd, "--no-pager")) {
110                         use_pager = 0;
111                         if (envchanged)
112                                 *envchanged = 1;
113                 } else if (!strcmp(cmd, "--no-replace-objects")) {
114                         check_replace_refs = 0;
115                         setenv(NO_REPLACE_OBJECTS_ENVIRONMENT, "1", 1);
116                         if (envchanged)
117                                 *envchanged = 1;
118                 } else if (!strcmp(cmd, "--git-dir")) {
119                         if (*argc < 2) {
120                                 fprintf(stderr, "No directory given for --git-dir.\n" );
121                                 usage(git_usage_string);
122                         }
123                         setenv(GIT_DIR_ENVIRONMENT, (*argv)[1], 1);
124                         if (envchanged)
125                                 *envchanged = 1;
126                         (*argv)++;
127                         (*argc)--;
128                 } else if (skip_prefix(cmd, "--git-dir=", &cmd)) {
129                         setenv(GIT_DIR_ENVIRONMENT, cmd, 1);
130                         if (envchanged)
131                                 *envchanged = 1;
132                 } else if (!strcmp(cmd, "--namespace")) {
133                         if (*argc < 2) {
134                                 fprintf(stderr, "No namespace given for --namespace.\n" );
135                                 usage(git_usage_string);
136                         }
137                         setenv(GIT_NAMESPACE_ENVIRONMENT, (*argv)[1], 1);
138                         if (envchanged)
139                                 *envchanged = 1;
140                         (*argv)++;
141                         (*argc)--;
142                 } else if (skip_prefix(cmd, "--namespace=", &cmd)) {
143                         setenv(GIT_NAMESPACE_ENVIRONMENT, cmd, 1);
144                         if (envchanged)
145                                 *envchanged = 1;
146                 } else if (!strcmp(cmd, "--work-tree")) {
147                         if (*argc < 2) {
148                                 fprintf(stderr, "No directory given for --work-tree.\n" );
149                                 usage(git_usage_string);
150                         }
151                         setenv(GIT_WORK_TREE_ENVIRONMENT, (*argv)[1], 1);
152                         if (envchanged)
153                                 *envchanged = 1;
154                         (*argv)++;
155                         (*argc)--;
156                 } else if (skip_prefix(cmd, "--work-tree=", &cmd)) {
157                         setenv(GIT_WORK_TREE_ENVIRONMENT, cmd, 1);
158                         if (envchanged)
159                                 *envchanged = 1;
160                 } else if (!strcmp(cmd, "--bare")) {
161                         char *cwd = xgetcwd();
162                         is_bare_repository_cfg = 1;
163                         setenv(GIT_DIR_ENVIRONMENT, cwd, 0);
164                         free(cwd);
165                         setenv(GIT_IMPLICIT_WORK_TREE_ENVIRONMENT, "0", 1);
166                         if (envchanged)
167                                 *envchanged = 1;
168                 } else if (!strcmp(cmd, "-c")) {
169                         if (*argc < 2) {
170                                 fprintf(stderr, "-c expects a configuration string\n" );
171                                 usage(git_usage_string);
172                         }
173                         git_config_push_parameter((*argv)[1]);
174                         (*argv)++;
175                         (*argc)--;
176                 } else if (!strcmp(cmd, "--literal-pathspecs")) {
177                         setenv(GIT_LITERAL_PATHSPECS_ENVIRONMENT, "1", 1);
178                         if (envchanged)
179                                 *envchanged = 1;
180                 } else if (!strcmp(cmd, "--no-literal-pathspecs")) {
181                         setenv(GIT_LITERAL_PATHSPECS_ENVIRONMENT, "0", 1);
182                         if (envchanged)
183                                 *envchanged = 1;
184                 } else if (!strcmp(cmd, "--glob-pathspecs")) {
185                         setenv(GIT_GLOB_PATHSPECS_ENVIRONMENT, "1", 1);
186                         if (envchanged)
187                                 *envchanged = 1;
188                 } else if (!strcmp(cmd, "--noglob-pathspecs")) {
189                         setenv(GIT_NOGLOB_PATHSPECS_ENVIRONMENT, "1", 1);
190                         if (envchanged)
191                                 *envchanged = 1;
192                 } else if (!strcmp(cmd, "--icase-pathspecs")) {
193                         setenv(GIT_ICASE_PATHSPECS_ENVIRONMENT, "1", 1);
194                         if (envchanged)
195                                 *envchanged = 1;
196                 } else if (!strcmp(cmd, "--shallow-file")) {
197                         (*argv)++;
198                         (*argc)--;
199                         set_alternate_shallow_file((*argv)[0], 1);
200                         if (envchanged)
201                                 *envchanged = 1;
202                 } else if (!strcmp(cmd, "-C")) {
203                         if (*argc < 2) {
204                                 fprintf(stderr, "No directory given for -C.\n" );
205                                 usage(git_usage_string);
206                         }
207                         if ((*argv)[1][0]) {
208                                 if (chdir((*argv)[1]))
209                                         die_errno("Cannot change to '%s'", (*argv)[1]);
210                                 if (envchanged)
211                                         *envchanged = 1;
212                         }
213                         (*argv)++;
214                         (*argc)--;
215                 } else {
216                         fprintf(stderr, "Unknown option: %s\n", cmd);
217                         usage(git_usage_string);
218                 }
219
220                 (*argv)++;
221                 (*argc)--;
222         }
223         return (*argv) - orig_argv;
224 }
225
226 static int handle_alias(int *argcp, const char ***argv)
227 {
228         int envchanged = 0, ret = 0, saved_errno = errno;
229         const char *subdir;
230         int count, option_count;
231         const char **new_argv;
232         const char *alias_command;
233         char *alias_string;
234         int unused_nongit;
235
236         save_env_before_alias();
237         subdir = setup_git_directory_gently(&unused_nongit);
238
239         alias_command = (*argv)[0];
240         alias_string = alias_lookup(alias_command);
241         if (alias_string) {
242                 if (alias_string[0] == '!') {
243                         const char **alias_argv;
244                         int argc = *argcp, i;
245
246                         commit_pager_choice();
247
248                         /* build alias_argv */
249                         alias_argv = xmalloc(sizeof(*alias_argv) * (argc + 1));
250                         alias_argv[0] = alias_string + 1;
251                         for (i = 1; i < argc; ++i)
252                                 alias_argv[i] = (*argv)[i];
253                         alias_argv[argc] = NULL;
254
255                         ret = run_command_v_opt(alias_argv, RUN_USING_SHELL);
256                         if (ret >= 0)   /* normal exit */
257                                 exit(ret);
258
259                         die_errno("While expanding alias '%s': '%s'",
260                             alias_command, alias_string + 1);
261                 }
262                 count = split_cmdline(alias_string, &new_argv);
263                 if (count < 0)
264                         die("Bad alias.%s string: %s", alias_command,
265                             split_cmdline_strerror(count));
266                 option_count = handle_options(&new_argv, &count, &envchanged);
267                 if (envchanged)
268                         die("alias '%s' changes environment variables\n"
269                                  "You can use '!git' in the alias to do this.",
270                                  alias_command);
271                 memmove(new_argv - option_count, new_argv,
272                                 count * sizeof(char *));
273                 new_argv -= option_count;
274
275                 if (count < 1)
276                         die("empty alias for %s", alias_command);
277
278                 if (!strcmp(alias_command, new_argv[0]))
279                         die("recursive alias: %s", alias_command);
280
281                 trace_argv_printf(new_argv,
282                                   "trace: alias expansion: %s =>",
283                                   alias_command);
284
285                 REALLOC_ARRAY(new_argv, count + *argcp);
286                 /* insert after command name */
287                 memcpy(new_argv + count, *argv + 1, sizeof(char *) * *argcp);
288
289                 *argv = new_argv;
290                 *argcp += count - 1;
291
292                 ret = 1;
293         }
294
295         if (subdir && chdir(subdir))
296                 die_errno("Cannot change to '%s'", subdir);
297
298         errno = saved_errno;
299
300         return ret;
301 }
302
303 #define RUN_SETUP               (1<<0)
304 #define RUN_SETUP_GENTLY        (1<<1)
305 #define USE_PAGER               (1<<2)
306 /*
307  * require working tree to be present -- anything uses this needs
308  * RUN_SETUP for reading from the configuration file.
309  */
310 #define NEED_WORK_TREE          (1<<3)
311 #define NO_SETUP                (1<<4)
312
313 struct cmd_struct {
314         const char *cmd;
315         int (*fn)(int, const char **, const char *);
316         int option;
317 };
318
319 static int run_builtin(struct cmd_struct *p, int argc, const char **argv)
320 {
321         int status, help;
322         struct stat st;
323         const char *prefix;
324
325         prefix = NULL;
326         help = argc == 2 && !strcmp(argv[1], "-h");
327         if (!help) {
328                 if (p->option & RUN_SETUP)
329                         prefix = setup_git_directory();
330                 else if (p->option & RUN_SETUP_GENTLY) {
331                         int nongit_ok;
332                         prefix = setup_git_directory_gently(&nongit_ok);
333                 }
334
335                 if (use_pager == -1 && p->option & (RUN_SETUP | RUN_SETUP_GENTLY))
336                         use_pager = check_pager_config(p->cmd);
337                 if (use_pager == -1 && p->option & USE_PAGER)
338                         use_pager = 1;
339
340                 if ((p->option & (RUN_SETUP | RUN_SETUP_GENTLY)) &&
341                     startup_info->have_repository) /* get_git_dir() may set up repo, avoid that */
342                         trace_repo_setup(prefix);
343         }
344         commit_pager_choice();
345
346         if (!help && p->option & NEED_WORK_TREE)
347                 setup_work_tree();
348
349         trace_argv_printf(argv, "trace: built-in: git");
350
351         status = p->fn(argc, argv, prefix);
352         if (status)
353                 return status;
354
355         /* Somebody closed stdout? */
356         if (fstat(fileno(stdout), &st))
357                 return 0;
358         /* Ignore write errors for pipes and sockets.. */
359         if (S_ISFIFO(st.st_mode) || S_ISSOCK(st.st_mode))
360                 return 0;
361
362         /* Check for ENOSPC and EIO errors.. */
363         if (fflush(stdout))
364                 die_errno("write failure on standard output");
365         if (ferror(stdout))
366                 die("unknown write failure on standard output");
367         if (fclose(stdout))
368                 die_errno("close failed on standard output");
369         return 0;
370 }
371
372 static struct cmd_struct commands[] = {
373         { "add", cmd_add, RUN_SETUP | NEED_WORK_TREE },
374         { "annotate", cmd_annotate, RUN_SETUP },
375         { "apply", cmd_apply, RUN_SETUP_GENTLY },
376         { "archive", cmd_archive },
377         { "bisect--helper", cmd_bisect__helper, RUN_SETUP },
378         { "blame", cmd_blame, RUN_SETUP },
379         { "branch", cmd_branch, RUN_SETUP },
380         { "bundle", cmd_bundle, RUN_SETUP_GENTLY },
381         { "cat-file", cmd_cat_file, RUN_SETUP },
382         { "check-attr", cmd_check_attr, RUN_SETUP },
383         { "check-ignore", cmd_check_ignore, RUN_SETUP | NEED_WORK_TREE },
384         { "check-mailmap", cmd_check_mailmap, RUN_SETUP },
385         { "check-ref-format", cmd_check_ref_format },
386         { "checkout", cmd_checkout, RUN_SETUP | NEED_WORK_TREE },
387         { "checkout-index", cmd_checkout_index,
388                 RUN_SETUP | NEED_WORK_TREE},
389         { "cherry", cmd_cherry, RUN_SETUP },
390         { "cherry-pick", cmd_cherry_pick, RUN_SETUP | NEED_WORK_TREE },
391         { "clean", cmd_clean, RUN_SETUP | NEED_WORK_TREE },
392         { "clone", cmd_clone, NO_SETUP },
393         { "column", cmd_column, RUN_SETUP_GENTLY },
394         { "commit", cmd_commit, RUN_SETUP | NEED_WORK_TREE },
395         { "commit-tree", cmd_commit_tree, RUN_SETUP },
396         { "config", cmd_config, RUN_SETUP_GENTLY },
397         { "count-objects", cmd_count_objects, RUN_SETUP },
398         { "credential", cmd_credential, RUN_SETUP_GENTLY },
399         { "describe", cmd_describe, RUN_SETUP },
400         { "diff", cmd_diff },
401         { "diff-files", cmd_diff_files, RUN_SETUP | NEED_WORK_TREE },
402         { "diff-index", cmd_diff_index, RUN_SETUP },
403         { "diff-tree", cmd_diff_tree, RUN_SETUP },
404         { "fast-export", cmd_fast_export, RUN_SETUP },
405         { "fetch", cmd_fetch, RUN_SETUP },
406         { "fetch-pack", cmd_fetch_pack, RUN_SETUP },
407         { "fmt-merge-msg", cmd_fmt_merge_msg, RUN_SETUP },
408         { "for-each-ref", cmd_for_each_ref, RUN_SETUP },
409         { "format-patch", cmd_format_patch, RUN_SETUP },
410         { "fsck", cmd_fsck, RUN_SETUP },
411         { "fsck-objects", cmd_fsck, RUN_SETUP },
412         { "gc", cmd_gc, RUN_SETUP },
413         { "get-tar-commit-id", cmd_get_tar_commit_id },
414         { "grep", cmd_grep, RUN_SETUP_GENTLY },
415         { "hash-object", cmd_hash_object },
416         { "help", cmd_help },
417         { "index-pack", cmd_index_pack, RUN_SETUP_GENTLY },
418         { "init", cmd_init_db, NO_SETUP },
419         { "init-db", cmd_init_db, NO_SETUP },
420         { "interpret-trailers", cmd_interpret_trailers, RUN_SETUP },
421         { "log", cmd_log, RUN_SETUP },
422         { "ls-files", cmd_ls_files, RUN_SETUP },
423         { "ls-remote", cmd_ls_remote, RUN_SETUP_GENTLY },
424         { "ls-tree", cmd_ls_tree, RUN_SETUP },
425         { "mailinfo", cmd_mailinfo },
426         { "mailsplit", cmd_mailsplit },
427         { "merge", cmd_merge, RUN_SETUP | NEED_WORK_TREE },
428         { "merge-base", cmd_merge_base, RUN_SETUP },
429         { "merge-file", cmd_merge_file, RUN_SETUP_GENTLY },
430         { "merge-index", cmd_merge_index, RUN_SETUP },
431         { "merge-ours", cmd_merge_ours, RUN_SETUP },
432         { "merge-recursive", cmd_merge_recursive, RUN_SETUP | NEED_WORK_TREE },
433         { "merge-recursive-ours", cmd_merge_recursive, RUN_SETUP | NEED_WORK_TREE },
434         { "merge-recursive-theirs", cmd_merge_recursive, RUN_SETUP | NEED_WORK_TREE },
435         { "merge-subtree", cmd_merge_recursive, RUN_SETUP | NEED_WORK_TREE },
436         { "merge-tree", cmd_merge_tree, RUN_SETUP },
437         { "mktag", cmd_mktag, RUN_SETUP },
438         { "mktree", cmd_mktree, RUN_SETUP },
439         { "mv", cmd_mv, RUN_SETUP | NEED_WORK_TREE },
440         { "name-rev", cmd_name_rev, RUN_SETUP },
441         { "notes", cmd_notes, RUN_SETUP },
442         { "pack-objects", cmd_pack_objects, RUN_SETUP },
443         { "pack-redundant", cmd_pack_redundant, RUN_SETUP },
444         { "pack-refs", cmd_pack_refs, RUN_SETUP },
445         { "patch-id", cmd_patch_id },
446         { "pickaxe", cmd_blame, RUN_SETUP },
447         { "prune", cmd_prune, RUN_SETUP },
448         { "prune-packed", cmd_prune_packed, RUN_SETUP },
449         { "push", cmd_push, RUN_SETUP },
450         { "read-tree", cmd_read_tree, RUN_SETUP },
451         { "receive-pack", cmd_receive_pack },
452         { "reflog", cmd_reflog, RUN_SETUP },
453         { "remote", cmd_remote, RUN_SETUP },
454         { "remote-ext", cmd_remote_ext },
455         { "remote-fd", cmd_remote_fd },
456         { "repack", cmd_repack, RUN_SETUP },
457         { "replace", cmd_replace, RUN_SETUP },
458         { "rerere", cmd_rerere, RUN_SETUP },
459         { "reset", cmd_reset, RUN_SETUP },
460         { "rev-list", cmd_rev_list, RUN_SETUP },
461         { "rev-parse", cmd_rev_parse },
462         { "revert", cmd_revert, RUN_SETUP | NEED_WORK_TREE },
463         { "rm", cmd_rm, RUN_SETUP },
464         { "send-pack", cmd_send_pack, RUN_SETUP },
465         { "shortlog", cmd_shortlog, RUN_SETUP_GENTLY | USE_PAGER },
466         { "show", cmd_show, RUN_SETUP },
467         { "show-branch", cmd_show_branch, RUN_SETUP },
468         { "show-ref", cmd_show_ref, RUN_SETUP },
469         { "stage", cmd_add, RUN_SETUP | NEED_WORK_TREE },
470         { "status", cmd_status, RUN_SETUP | NEED_WORK_TREE },
471         { "stripspace", cmd_stripspace },
472         { "symbolic-ref", cmd_symbolic_ref, RUN_SETUP },
473         { "tag", cmd_tag, RUN_SETUP },
474         { "unpack-file", cmd_unpack_file, RUN_SETUP },
475         { "unpack-objects", cmd_unpack_objects, RUN_SETUP },
476         { "update-index", cmd_update_index, RUN_SETUP },
477         { "update-ref", cmd_update_ref, RUN_SETUP },
478         { "update-server-info", cmd_update_server_info, RUN_SETUP },
479         { "upload-archive", cmd_upload_archive },
480         { "upload-archive--writer", cmd_upload_archive_writer },
481         { "var", cmd_var, RUN_SETUP_GENTLY },
482         { "verify-commit", cmd_verify_commit, RUN_SETUP },
483         { "verify-pack", cmd_verify_pack },
484         { "verify-tag", cmd_verify_tag, RUN_SETUP },
485         { "version", cmd_version },
486         { "whatchanged", cmd_whatchanged, RUN_SETUP },
487         { "worktree", cmd_worktree, RUN_SETUP },
488         { "write-tree", cmd_write_tree, RUN_SETUP },
489 };
490
491 static struct cmd_struct *get_builtin(const char *s)
492 {
493         int i;
494         for (i = 0; i < ARRAY_SIZE(commands); i++) {
495                 struct cmd_struct *p = commands + i;
496                 if (!strcmp(s, p->cmd))
497                         return p;
498         }
499         return NULL;
500 }
501
502 int is_builtin(const char *s)
503 {
504         return !!get_builtin(s);
505 }
506
507 static void handle_builtin(int argc, const char **argv)
508 {
509         const char *cmd = argv[0];
510         int i;
511         static const char ext[] = STRIP_EXTENSION;
512         struct cmd_struct *builtin;
513
514         if (sizeof(ext) > 1) {
515                 i = strlen(argv[0]) - strlen(ext);
516                 if (i > 0 && !strcmp(argv[0] + i, ext)) {
517                         char *argv0 = xstrdup(argv[0]);
518                         argv[0] = cmd = argv0;
519                         argv0[i] = '\0';
520                 }
521         }
522
523         /* Turn "git cmd --help" into "git help cmd" */
524         if (argc > 1 && !strcmp(argv[1], "--help")) {
525                 argv[1] = argv[0];
526                 argv[0] = cmd = "help";
527         }
528
529         builtin = get_builtin(cmd);
530         if (builtin) {
531                 if (saved_env_before_alias && (builtin->option & NO_SETUP))
532                         restore_env();
533                 else
534                         exit(run_builtin(builtin, argc, argv));
535         }
536 }
537
538 static void execv_dashed_external(const char **argv)
539 {
540         struct strbuf cmd = STRBUF_INIT;
541         const char *tmp;
542         int status;
543
544         if (use_pager == -1)
545                 use_pager = check_pager_config(argv[0]);
546         commit_pager_choice();
547
548         strbuf_addf(&cmd, "git-%s", argv[0]);
549
550         /*
551          * argv[0] must be the git command, but the argv array
552          * belongs to the caller, and may be reused in
553          * subsequent loop iterations. Save argv[0] and
554          * restore it on error.
555          */
556         tmp = argv[0];
557         argv[0] = cmd.buf;
558
559         trace_argv_printf(argv, "trace: exec:");
560
561         /*
562          * if we fail because the command is not found, it is
563          * OK to return. Otherwise, we just pass along the status code.
564          */
565         status = run_command_v_opt(argv, RUN_SILENT_EXEC_FAILURE | RUN_CLEAN_ON_EXIT);
566         if (status >= 0 || errno != ENOENT)
567                 exit(status);
568
569         argv[0] = tmp;
570
571         strbuf_release(&cmd);
572 }
573
574 static int run_argv(int *argcp, const char ***argv)
575 {
576         int done_alias = 0;
577
578         while (1) {
579                 /* See if it's a builtin */
580                 handle_builtin(*argcp, *argv);
581
582                 /* .. then try the external ones */
583                 execv_dashed_external(*argv);
584
585                 /* It could be an alias -- this works around the insanity
586                  * of overriding "git log" with "git show" by having
587                  * alias.log = show
588                  */
589                 if (done_alias)
590                         break;
591                 if (!handle_alias(argcp, argv))
592                         break;
593                 done_alias = 1;
594         }
595
596         return done_alias;
597 }
598
599 /*
600  * Many parts of Git have subprograms communicate via pipe, expect the
601  * upstream of a pipe to die with SIGPIPE when the downstream of a
602  * pipe does not need to read all that is written.  Some third-party
603  * programs that ignore or block SIGPIPE for their own reason forget
604  * to restore SIGPIPE handling to the default before spawning Git and
605  * break this carefully orchestrated machinery.
606  *
607  * Restore the way SIGPIPE is handled to default, which is what we
608  * expect.
609  */
610 static void restore_sigpipe_to_default(void)
611 {
612         sigset_t unblock;
613
614         sigemptyset(&unblock);
615         sigaddset(&unblock, SIGPIPE);
616         sigprocmask(SIG_UNBLOCK, &unblock, NULL);
617         signal(SIGPIPE, SIG_DFL);
618 }
619
620 int main(int argc, char **av)
621 {
622         const char **argv = (const char **) av;
623         const char *cmd;
624         int done_help = 0;
625
626         startup_info = &git_startup_info;
627
628         cmd = git_extract_argv0_path(argv[0]);
629         if (!cmd)
630                 cmd = "git-help";
631
632         /*
633          * Always open file descriptors 0/1/2 to avoid clobbering files
634          * in die().  It also avoids messing up when the pipes are dup'ed
635          * onto stdin/stdout/stderr in the child processes we spawn.
636          */
637         sanitize_stdfds();
638
639         restore_sigpipe_to_default();
640
641         git_setup_gettext();
642
643         trace_command_performance(argv);
644
645         /*
646          * "git-xxxx" is the same as "git xxxx", but we obviously:
647          *
648          *  - cannot take flags in between the "git" and the "xxxx".
649          *  - cannot execute it externally (since it would just do
650          *    the same thing over again)
651          *
652          * So we just directly call the builtin handler, and die if
653          * that one cannot handle it.
654          */
655         if (skip_prefix(cmd, "git-", &cmd)) {
656                 argv[0] = cmd;
657                 handle_builtin(argc, argv);
658                 die("cannot handle %s as a builtin", cmd);
659         }
660
661         /* Look for flags.. */
662         argv++;
663         argc--;
664         handle_options(&argv, &argc, NULL);
665         if (argc > 0) {
666                 /* translate --help and --version into commands */
667                 skip_prefix(argv[0], "--", &argv[0]);
668         } else {
669                 /* The user didn't specify a command; give them help */
670                 commit_pager_choice();
671                 printf("usage: %s\n\n", git_usage_string);
672                 list_common_cmds_help();
673                 printf("\n%s\n", _(git_more_info_string));
674                 exit(1);
675         }
676         cmd = argv[0];
677
678         /*
679          * We use PATH to find git commands, but we prepend some higher
680          * precedence paths: the "--exec-path" option, the GIT_EXEC_PATH
681          * environment, and the $(gitexecdir) from the Makefile at build
682          * time.
683          */
684         setup_path();
685
686         while (1) {
687                 int was_alias = run_argv(&argc, &argv);
688                 if (errno != ENOENT)
689                         break;
690                 if (was_alias) {
691                         fprintf(stderr, "Expansion of alias '%s' failed; "
692                                 "'%s' is not a git command\n",
693                                 cmd, argv[0]);
694                         exit(1);
695                 }
696                 if (!done_help) {
697                         cmd = argv[0] = help_unknown_cmd(cmd);
698                         done_help = 1;
699                 } else
700                         break;
701         }
702
703         fprintf(stderr, "Failed to run command '%s': %s\n",
704                 cmd, strerror(errno));
705
706         return 1;
707 }