5 #include "run-command.h"
7 #define RUN_SETUP (1<<0)
8 #define RUN_SETUP_GENTLY (1<<1)
9 #define USE_PAGER (1<<2)
11 * require working tree to be present -- anything uses this needs
12 * RUN_SETUP for reading from the configuration file.
14 #define NEED_WORK_TREE (1<<3)
15 #define SUPPORT_SUPER_PREFIX (1<<4)
16 #define DELAY_PAGER_CONFIG (1<<5)
17 #define NO_PARSEOPT (1<<6) /* parse-options is not used */
21 int (*fn)(int, const char **, const char *);
25 const char git_usage_string[] =
26 N_("git [--version] [--help] [-C <path>] [-c <name>=<value>]\n"
27 " [--exec-path[=<path>]] [--html-path] [--man-path] [--info-path]\n"
28 " [-p | --paginate | --no-pager] [--no-replace-objects] [--bare]\n"
29 " [--git-dir=<path>] [--work-tree=<path>] [--namespace=<name>]\n"
30 " <command> [<args>]");
32 const char git_more_info_string[] =
33 N_("'git help -a' and 'git help -g' list available subcommands and some\n"
34 "concept guides. See 'git help <command>' or 'git help <concept>'\n"
35 "to read about a specific subcommand or concept.");
37 static int use_pager = -1;
39 static void list_builtins(struct string_list *list, unsigned int exclude_option);
41 static int match_token(const char *spec, int len, const char *token)
43 int token_len = strlen(token);
45 return len == token_len && !strncmp(spec, token, token_len);
48 static int list_cmds(const char *spec)
50 struct string_list list = STRING_LIST_INIT_DUP;
54 const char *sep = strchrnul(spec, ',');
57 if (match_token(spec, len, "builtins"))
58 list_builtins(&list, 0);
60 die(_("unsupported command listing type '%s'"), spec);
65 for (i = 0; i < list.nr; i++)
66 puts(list.items[i].string);
67 string_list_clear(&list, 0);
71 static void commit_pager_choice(void) {
74 setenv("GIT_PAGER", "cat", 1);
84 void setup_auto_pager(const char *cmd, int def)
86 if (use_pager != -1 || pager_in_use())
88 use_pager = check_pager_config(cmd);
91 commit_pager_choice();
94 static int handle_options(const char ***argv, int *argc, int *envchanged)
96 const char **orig_argv = *argv;
99 const char *cmd = (*argv)[0];
104 * For legacy reasons, the "version" and "help"
105 * commands can be written with "--" prepended
106 * to make them look like flags.
108 if (!strcmp(cmd, "--help") || !strcmp(cmd, "--version"))
112 * Check remaining flags.
114 if (skip_prefix(cmd, "--exec-path", &cmd)) {
116 git_set_argv_exec_path(cmd + 1);
118 puts(git_exec_path());
121 } else if (!strcmp(cmd, "--html-path")) {
122 puts(system_path(GIT_HTML_PATH));
124 } else if (!strcmp(cmd, "--man-path")) {
125 puts(system_path(GIT_MAN_PATH));
127 } else if (!strcmp(cmd, "--info-path")) {
128 puts(system_path(GIT_INFO_PATH));
130 } else if (!strcmp(cmd, "-p") || !strcmp(cmd, "--paginate")) {
132 } else if (!strcmp(cmd, "--no-pager")) {
136 } else if (!strcmp(cmd, "--no-replace-objects")) {
137 check_replace_refs = 0;
138 setenv(NO_REPLACE_OBJECTS_ENVIRONMENT, "1", 1);
141 } else if (!strcmp(cmd, "--git-dir")) {
143 fprintf(stderr, _("no directory given for --git-dir\n" ));
144 usage(git_usage_string);
146 setenv(GIT_DIR_ENVIRONMENT, (*argv)[1], 1);
151 } else if (skip_prefix(cmd, "--git-dir=", &cmd)) {
152 setenv(GIT_DIR_ENVIRONMENT, cmd, 1);
155 } else if (!strcmp(cmd, "--namespace")) {
157 fprintf(stderr, _("no namespace given for --namespace\n" ));
158 usage(git_usage_string);
160 setenv(GIT_NAMESPACE_ENVIRONMENT, (*argv)[1], 1);
165 } else if (skip_prefix(cmd, "--namespace=", &cmd)) {
166 setenv(GIT_NAMESPACE_ENVIRONMENT, cmd, 1);
169 } else if (!strcmp(cmd, "--work-tree")) {
171 fprintf(stderr, _("no directory given for --work-tree\n" ));
172 usage(git_usage_string);
174 setenv(GIT_WORK_TREE_ENVIRONMENT, (*argv)[1], 1);
179 } else if (skip_prefix(cmd, "--work-tree=", &cmd)) {
180 setenv(GIT_WORK_TREE_ENVIRONMENT, cmd, 1);
183 } else if (!strcmp(cmd, "--super-prefix")) {
185 fprintf(stderr, _("no prefix given for --super-prefix\n" ));
186 usage(git_usage_string);
188 setenv(GIT_SUPER_PREFIX_ENVIRONMENT, (*argv)[1], 1);
193 } else if (skip_prefix(cmd, "--super-prefix=", &cmd)) {
194 setenv(GIT_SUPER_PREFIX_ENVIRONMENT, cmd, 1);
197 } else if (!strcmp(cmd, "--bare")) {
198 char *cwd = xgetcwd();
199 is_bare_repository_cfg = 1;
200 setenv(GIT_DIR_ENVIRONMENT, cwd, 0);
202 setenv(GIT_IMPLICIT_WORK_TREE_ENVIRONMENT, "0", 1);
205 } else if (!strcmp(cmd, "-c")) {
207 fprintf(stderr, _("-c expects a configuration string\n" ));
208 usage(git_usage_string);
210 git_config_push_parameter((*argv)[1]);
213 } else if (!strcmp(cmd, "--literal-pathspecs")) {
214 setenv(GIT_LITERAL_PATHSPECS_ENVIRONMENT, "1", 1);
217 } else if (!strcmp(cmd, "--no-literal-pathspecs")) {
218 setenv(GIT_LITERAL_PATHSPECS_ENVIRONMENT, "0", 1);
221 } else if (!strcmp(cmd, "--glob-pathspecs")) {
222 setenv(GIT_GLOB_PATHSPECS_ENVIRONMENT, "1", 1);
225 } else if (!strcmp(cmd, "--noglob-pathspecs")) {
226 setenv(GIT_NOGLOB_PATHSPECS_ENVIRONMENT, "1", 1);
229 } else if (!strcmp(cmd, "--icase-pathspecs")) {
230 setenv(GIT_ICASE_PATHSPECS_ENVIRONMENT, "1", 1);
233 } else if (!strcmp(cmd, "--no-optional-locks")) {
234 setenv(GIT_OPTIONAL_LOCKS_ENVIRONMENT, "0", 1);
237 } else if (!strcmp(cmd, "--shallow-file")) {
240 set_alternate_shallow_file((*argv)[0], 1);
243 } else if (!strcmp(cmd, "-C")) {
245 fprintf(stderr, _("no directory given for -C\n" ));
246 usage(git_usage_string);
249 if (chdir((*argv)[1]))
250 die_errno("cannot change to '%s'", (*argv)[1]);
256 } else if (skip_prefix(cmd, "--list-cmds=", &cmd)) {
257 if (!strcmp(cmd, "parseopt")) {
258 struct string_list list = STRING_LIST_INIT_DUP;
261 list_builtins(&list, NO_PARSEOPT);
262 for (i = 0; i < list.nr; i++)
263 printf("%s ", list.items[i].string);
264 string_list_clear(&list, 0);
267 exit(list_cmds(cmd));
270 fprintf(stderr, _("unknown option: %s\n"), cmd);
271 usage(git_usage_string);
277 return (*argv) - orig_argv;
280 static int handle_alias(int *argcp, const char ***argv)
282 int envchanged = 0, ret = 0, saved_errno = errno;
283 int count, option_count;
284 const char **new_argv;
285 const char *alias_command;
288 alias_command = (*argv)[0];
289 alias_string = alias_lookup(alias_command);
291 if (alias_string[0] == '!') {
292 struct child_process child = CHILD_PROCESS_INIT;
295 /* Aliases expect GIT_PREFIX, GIT_DIR etc to be set */
296 setup_git_directory_gently(&nongit_ok);
298 commit_pager_choice();
301 argv_array_push(&child.args, alias_string + 1);
302 argv_array_pushv(&child.args, (*argv) + 1);
304 ret = run_command(&child);
305 if (ret >= 0) /* normal exit */
308 die_errno("while expanding alias '%s': '%s'",
309 alias_command, alias_string + 1);
311 count = split_cmdline(alias_string, &new_argv);
313 die("Bad alias.%s string: %s", alias_command,
314 split_cmdline_strerror(count));
315 option_count = handle_options(&new_argv, &count, &envchanged);
317 die("alias '%s' changes environment variables.\n"
318 "You can use '!git' in the alias to do this",
320 memmove(new_argv - option_count, new_argv,
321 count * sizeof(char *));
322 new_argv -= option_count;
325 die("empty alias for %s", alias_command);
327 if (!strcmp(alias_command, new_argv[0]))
328 die("recursive alias: %s", alias_command);
330 trace_argv_printf(new_argv,
331 "trace: alias expansion: %s =>",
334 REALLOC_ARRAY(new_argv, count + *argcp);
335 /* insert after command name */
336 memcpy(new_argv + count, *argv + 1, sizeof(char *) * *argcp);
349 static int run_builtin(struct cmd_struct *p, int argc, const char **argv)
356 help = argc == 2 && !strcmp(argv[1], "-h");
358 if (p->option & RUN_SETUP)
359 prefix = setup_git_directory();
360 else if (p->option & RUN_SETUP_GENTLY) {
362 prefix = setup_git_directory_gently(&nongit_ok);
365 if (use_pager == -1 && p->option & (RUN_SETUP | RUN_SETUP_GENTLY) &&
366 !(p->option & DELAY_PAGER_CONFIG))
367 use_pager = check_pager_config(p->cmd);
368 if (use_pager == -1 && p->option & USE_PAGER)
371 if ((p->option & (RUN_SETUP | RUN_SETUP_GENTLY)) &&
372 startup_info->have_repository) /* get_git_dir() may set up repo, avoid that */
373 trace_repo_setup(prefix);
375 commit_pager_choice();
377 if (!help && get_super_prefix()) {
378 if (!(p->option & SUPPORT_SUPER_PREFIX))
379 die("%s doesn't support --super-prefix", p->cmd);
382 if (!help && p->option & NEED_WORK_TREE)
385 trace_argv_printf(argv, "trace: built-in: git");
387 status = p->fn(argc, argv, prefix);
391 /* Somebody closed stdout? */
392 if (fstat(fileno(stdout), &st))
394 /* Ignore write errors for pipes and sockets.. */
395 if (S_ISFIFO(st.st_mode) || S_ISSOCK(st.st_mode))
398 /* Check for ENOSPC and EIO errors.. */
400 die_errno("write failure on standard output");
402 die("unknown write failure on standard output");
404 die_errno("close failed on standard output");
408 static struct cmd_struct commands[] = {
409 { "add", cmd_add, RUN_SETUP | NEED_WORK_TREE },
410 { "am", cmd_am, RUN_SETUP | NEED_WORK_TREE },
411 { "annotate", cmd_annotate, RUN_SETUP | NO_PARSEOPT },
412 { "apply", cmd_apply, RUN_SETUP_GENTLY },
413 { "archive", cmd_archive, RUN_SETUP_GENTLY },
414 { "bisect--helper", cmd_bisect__helper, RUN_SETUP },
415 { "blame", cmd_blame, RUN_SETUP },
416 { "branch", cmd_branch, RUN_SETUP | DELAY_PAGER_CONFIG },
417 { "bundle", cmd_bundle, RUN_SETUP_GENTLY | NO_PARSEOPT },
418 { "cat-file", cmd_cat_file, RUN_SETUP },
419 { "check-attr", cmd_check_attr, RUN_SETUP },
420 { "check-ignore", cmd_check_ignore, RUN_SETUP | NEED_WORK_TREE },
421 { "check-mailmap", cmd_check_mailmap, RUN_SETUP },
422 { "check-ref-format", cmd_check_ref_format, NO_PARSEOPT },
423 { "checkout", cmd_checkout, RUN_SETUP | NEED_WORK_TREE },
424 { "checkout-index", cmd_checkout_index,
425 RUN_SETUP | NEED_WORK_TREE},
426 { "cherry", cmd_cherry, RUN_SETUP },
427 { "cherry-pick", cmd_cherry_pick, RUN_SETUP | NEED_WORK_TREE },
428 { "clean", cmd_clean, RUN_SETUP | NEED_WORK_TREE },
429 { "clone", cmd_clone },
430 { "column", cmd_column, RUN_SETUP_GENTLY },
431 { "commit", cmd_commit, RUN_SETUP | NEED_WORK_TREE },
432 { "commit-tree", cmd_commit_tree, RUN_SETUP | NO_PARSEOPT },
433 { "config", cmd_config, RUN_SETUP_GENTLY | DELAY_PAGER_CONFIG },
434 { "count-objects", cmd_count_objects, RUN_SETUP },
435 { "credential", cmd_credential, RUN_SETUP_GENTLY | NO_PARSEOPT },
436 { "describe", cmd_describe, RUN_SETUP },
437 { "diff", cmd_diff, NO_PARSEOPT },
438 { "diff-files", cmd_diff_files, RUN_SETUP | NEED_WORK_TREE | NO_PARSEOPT },
439 { "diff-index", cmd_diff_index, RUN_SETUP | NO_PARSEOPT },
440 { "diff-tree", cmd_diff_tree, RUN_SETUP | NO_PARSEOPT },
441 { "difftool", cmd_difftool, RUN_SETUP | NEED_WORK_TREE },
442 { "fast-export", cmd_fast_export, RUN_SETUP },
443 { "fetch", cmd_fetch, RUN_SETUP },
444 { "fetch-pack", cmd_fetch_pack, RUN_SETUP | NO_PARSEOPT },
445 { "fmt-merge-msg", cmd_fmt_merge_msg, RUN_SETUP },
446 { "for-each-ref", cmd_for_each_ref, RUN_SETUP },
447 { "format-patch", cmd_format_patch, RUN_SETUP },
448 { "fsck", cmd_fsck, RUN_SETUP },
449 { "fsck-objects", cmd_fsck, RUN_SETUP },
450 { "gc", cmd_gc, RUN_SETUP },
451 { "get-tar-commit-id", cmd_get_tar_commit_id, NO_PARSEOPT },
452 { "grep", cmd_grep, RUN_SETUP_GENTLY },
453 { "hash-object", cmd_hash_object },
454 { "help", cmd_help },
455 { "index-pack", cmd_index_pack, RUN_SETUP_GENTLY | NO_PARSEOPT },
456 { "init", cmd_init_db },
457 { "init-db", cmd_init_db },
458 { "interpret-trailers", cmd_interpret_trailers, RUN_SETUP_GENTLY },
459 { "log", cmd_log, RUN_SETUP },
460 { "ls-files", cmd_ls_files, RUN_SETUP },
461 { "ls-remote", cmd_ls_remote, RUN_SETUP_GENTLY },
462 { "ls-tree", cmd_ls_tree, RUN_SETUP },
463 { "mailinfo", cmd_mailinfo, RUN_SETUP_GENTLY | NO_PARSEOPT },
464 { "mailsplit", cmd_mailsplit, NO_PARSEOPT },
465 { "merge", cmd_merge, RUN_SETUP | NEED_WORK_TREE },
466 { "merge-base", cmd_merge_base, RUN_SETUP },
467 { "merge-file", cmd_merge_file, RUN_SETUP_GENTLY },
468 { "merge-index", cmd_merge_index, RUN_SETUP | NO_PARSEOPT },
469 { "merge-ours", cmd_merge_ours, RUN_SETUP | NO_PARSEOPT },
470 { "merge-recursive", cmd_merge_recursive, RUN_SETUP | NEED_WORK_TREE | NO_PARSEOPT },
471 { "merge-recursive-ours", cmd_merge_recursive, RUN_SETUP | NEED_WORK_TREE | NO_PARSEOPT },
472 { "merge-recursive-theirs", cmd_merge_recursive, RUN_SETUP | NEED_WORK_TREE | NO_PARSEOPT },
473 { "merge-subtree", cmd_merge_recursive, RUN_SETUP | NEED_WORK_TREE | NO_PARSEOPT },
474 { "merge-tree", cmd_merge_tree, RUN_SETUP | NO_PARSEOPT },
475 { "mktag", cmd_mktag, RUN_SETUP | NO_PARSEOPT },
476 { "mktree", cmd_mktree, RUN_SETUP },
477 { "mv", cmd_mv, RUN_SETUP | NEED_WORK_TREE },
478 { "name-rev", cmd_name_rev, RUN_SETUP },
479 { "notes", cmd_notes, RUN_SETUP },
480 { "pack-objects", cmd_pack_objects, RUN_SETUP },
481 { "pack-redundant", cmd_pack_redundant, RUN_SETUP | NO_PARSEOPT },
482 { "pack-refs", cmd_pack_refs, RUN_SETUP },
483 { "patch-id", cmd_patch_id, RUN_SETUP_GENTLY | NO_PARSEOPT },
484 { "pickaxe", cmd_blame, RUN_SETUP },
485 { "prune", cmd_prune, RUN_SETUP },
486 { "prune-packed", cmd_prune_packed, RUN_SETUP },
487 { "pull", cmd_pull, RUN_SETUP | NEED_WORK_TREE },
488 { "push", cmd_push, RUN_SETUP },
489 { "read-tree", cmd_read_tree, RUN_SETUP | SUPPORT_SUPER_PREFIX},
490 { "rebase--helper", cmd_rebase__helper, RUN_SETUP | NEED_WORK_TREE },
491 { "receive-pack", cmd_receive_pack },
492 { "reflog", cmd_reflog, RUN_SETUP },
493 { "remote", cmd_remote, RUN_SETUP },
494 { "remote-ext", cmd_remote_ext, NO_PARSEOPT },
495 { "remote-fd", cmd_remote_fd, NO_PARSEOPT },
496 { "repack", cmd_repack, RUN_SETUP },
497 { "replace", cmd_replace, RUN_SETUP },
498 { "rerere", cmd_rerere, RUN_SETUP },
499 { "reset", cmd_reset, RUN_SETUP },
500 { "rev-list", cmd_rev_list, RUN_SETUP | NO_PARSEOPT },
501 { "rev-parse", cmd_rev_parse, NO_PARSEOPT },
502 { "revert", cmd_revert, RUN_SETUP | NEED_WORK_TREE },
503 { "rm", cmd_rm, RUN_SETUP },
504 { "send-pack", cmd_send_pack, RUN_SETUP },
505 { "shortlog", cmd_shortlog, RUN_SETUP_GENTLY | USE_PAGER },
506 { "show", cmd_show, RUN_SETUP },
507 { "show-branch", cmd_show_branch, RUN_SETUP },
508 { "show-ref", cmd_show_ref, RUN_SETUP },
509 { "stage", cmd_add, RUN_SETUP | NEED_WORK_TREE },
510 { "status", cmd_status, RUN_SETUP | NEED_WORK_TREE },
511 { "stripspace", cmd_stripspace },
512 { "submodule--helper", cmd_submodule__helper, RUN_SETUP | SUPPORT_SUPER_PREFIX | NO_PARSEOPT },
513 { "symbolic-ref", cmd_symbolic_ref, RUN_SETUP },
514 { "tag", cmd_tag, RUN_SETUP | DELAY_PAGER_CONFIG },
515 { "unpack-file", cmd_unpack_file, RUN_SETUP | NO_PARSEOPT },
516 { "unpack-objects", cmd_unpack_objects, RUN_SETUP | NO_PARSEOPT },
517 { "update-index", cmd_update_index, RUN_SETUP },
518 { "update-ref", cmd_update_ref, RUN_SETUP },
519 { "update-server-info", cmd_update_server_info, RUN_SETUP },
520 { "upload-archive", cmd_upload_archive, NO_PARSEOPT },
521 { "upload-archive--writer", cmd_upload_archive_writer, NO_PARSEOPT },
522 { "var", cmd_var, RUN_SETUP_GENTLY | NO_PARSEOPT },
523 { "verify-commit", cmd_verify_commit, RUN_SETUP },
524 { "verify-pack", cmd_verify_pack },
525 { "verify-tag", cmd_verify_tag, RUN_SETUP },
526 { "version", cmd_version },
527 { "whatchanged", cmd_whatchanged, RUN_SETUP },
528 { "worktree", cmd_worktree, RUN_SETUP | NO_PARSEOPT },
529 { "write-tree", cmd_write_tree, RUN_SETUP },
532 static struct cmd_struct *get_builtin(const char *s)
535 for (i = 0; i < ARRAY_SIZE(commands); i++) {
536 struct cmd_struct *p = commands + i;
537 if (!strcmp(s, p->cmd))
543 int is_builtin(const char *s)
545 return !!get_builtin(s);
548 static void list_builtins(struct string_list *out, unsigned int exclude_option)
551 for (i = 0; i < ARRAY_SIZE(commands); i++) {
552 if (exclude_option &&
553 (commands[i].option & exclude_option))
555 string_list_append(out, commands[i].cmd);
559 #ifdef STRIP_EXTENSION
560 static void strip_extension(const char **argv)
564 if (strip_suffix(argv[0], STRIP_EXTENSION, &len))
565 argv[0] = xmemdupz(argv[0], len);
568 #define strip_extension(cmd)
571 static void handle_builtin(int argc, const char **argv)
573 struct argv_array args = ARGV_ARRAY_INIT;
575 struct cmd_struct *builtin;
577 strip_extension(argv);
580 /* Turn "git cmd --help" into "git help --exclude-guides cmd" */
581 if (argc > 1 && !strcmp(argv[1], "--help")) {
585 argv[0] = cmd = "help";
587 for (i = 0; i < argc; i++) {
588 argv_array_push(&args, argv[i]);
590 argv_array_push(&args, "--exclude-guides");
597 builtin = get_builtin(cmd);
599 exit(run_builtin(builtin, argc, argv));
600 argv_array_clear(&args);
603 static void execv_dashed_external(const char **argv)
605 struct child_process cmd = CHILD_PROCESS_INIT;
608 if (get_super_prefix())
609 die("%s doesn't support --super-prefix", argv[0]);
611 if (use_pager == -1 && !is_builtin(argv[0]))
612 use_pager = check_pager_config(argv[0]);
613 commit_pager_choice();
615 argv_array_pushf(&cmd.args, "git-%s", argv[0]);
616 argv_array_pushv(&cmd.args, argv + 1);
617 cmd.clean_on_exit = 1;
618 cmd.wait_after_clean = 1;
619 cmd.silent_exec_failure = 1;
621 trace_argv_printf(cmd.args.argv, "trace: exec:");
624 * If we fail because the command is not found, it is
625 * OK to return. Otherwise, we just pass along the status code,
626 * or our usual generic code if we were not even able to exec
629 status = run_command(&cmd);
632 else if (errno != ENOENT)
636 static int run_argv(int *argcp, const char ***argv)
642 * If we tried alias and futzed with our environment,
643 * it no longer is safe to invoke builtins directly in
644 * general. We have to spawn them as dashed externals.
646 * NEEDSWORK: if we can figure out cases
647 * where it is safe to do, we can avoid spawning a new
651 handle_builtin(*argcp, *argv);
653 /* .. then try the external ones */
654 execv_dashed_external(*argv);
656 /* It could be an alias -- this works around the insanity
657 * of overriding "git log" with "git show" by having
662 if (!handle_alias(argcp, argv))
670 int cmd_main(int argc, const char **argv)
679 const char *slash = find_last_dir_sep(cmd);
684 trace_command_performance(argv);
687 * "git-xxxx" is the same as "git xxxx", but we obviously:
689 * - cannot take flags in between the "git" and the "xxxx".
690 * - cannot execute it externally (since it would just do
691 * the same thing over again)
693 * So we just directly call the builtin handler, and die if
694 * that one cannot handle it.
696 if (skip_prefix(cmd, "git-", &cmd)) {
698 handle_builtin(argc, argv);
699 die("cannot handle %s as a builtin", cmd);
702 /* Look for flags.. */
705 handle_options(&argv, &argc, NULL);
707 /* translate --help and --version into commands */
708 skip_prefix(argv[0], "--", &argv[0]);
710 /* The user didn't specify a command; give them help */
711 commit_pager_choice();
712 printf("usage: %s\n\n", git_usage_string);
713 list_common_cmds_help();
714 printf("\n%s\n", _(git_more_info_string));
720 * We use PATH to find git commands, but we prepend some higher
721 * precedence paths: the "--exec-path" option, the GIT_EXEC_PATH
722 * environment, and the $(gitexecdir) from the Makefile at build
728 int was_alias = run_argv(&argc, &argv);
732 fprintf(stderr, _("expansion of alias '%s' failed; "
733 "'%s' is not a git command\n"),
738 cmd = argv[0] = help_unknown_cmd(cmd);
744 fprintf(stderr, _("failed to run command '%s': %s\n"),
745 cmd, strerror(errno));