5 #include "run-command.h"
6 #include "levenshtein.h"
8 #include "command-list.h"
9 #include "string-list.h"
13 #include "parse-options.h"
15 struct category_description {
19 static uint32_t common_mask =
20 CAT_init | CAT_worktree | CAT_info |
21 CAT_history | CAT_remote;
22 static struct category_description common_categories[] = {
23 { CAT_init, N_("start a working area (see also: git help tutorial)") },
24 { CAT_worktree, N_("work on the current change (see also: git help everyday)") },
25 { CAT_info, N_("examine the history and state (see also: git help revisions)") },
26 { CAT_history, N_("grow, mark and tweak your common history") },
27 { CAT_remote, N_("collaborate (see also: git help workflows)") },
30 static struct category_description main_categories[] = {
31 { CAT_mainporcelain, N_("Main Porcelain Commands") },
32 { CAT_ancillarymanipulators, N_("Ancillary Commands / Manipulators") },
33 { CAT_ancillaryinterrogators, N_("Ancillary Commands / Interrogators") },
34 { CAT_foreignscminterface, N_("Interacting with Others") },
35 { CAT_plumbingmanipulators, N_("Low-level Commands / Manipulators") },
36 { CAT_plumbinginterrogators, N_("Low-level Commands / Interrogators") },
37 { CAT_synchingrepositories, N_("Low-level Commands / Syncing Repositories") },
38 { CAT_purehelpers, N_("Low-level Commands / Internal Helpers") },
42 static const char *drop_prefix(const char *name, uint32_t category)
46 if (skip_prefix(name, "git-", &new_name))
48 if (category == CAT_guide && skip_prefix(name, "git", &new_name))
54 static void extract_cmds(struct cmdname_help **p_cmds, uint32_t mask)
57 struct cmdname_help *cmds;
59 if (ARRAY_SIZE(command_list) == 0)
60 BUG("empty command_list[] is a sign of broken generate-cmdlist.sh");
62 ALLOC_ARRAY(cmds, ARRAY_SIZE(command_list) + 1);
64 for (i = 0; i < ARRAY_SIZE(command_list); i++) {
65 const struct cmdname_help *cmd = command_list + i;
67 if (!(cmd->category & mask))
71 cmds[nr].name = drop_prefix(cmd->name, cmd->category);
79 static void print_command_list(const struct cmdname_help *cmds,
80 uint32_t mask, int longest)
84 for (i = 0; cmds[i].name; i++) {
85 if (cmds[i].category & mask) {
86 size_t len = strlen(cmds[i].name);
87 printf(" %s ", cmds[i].name);
89 mput_char(' ', longest - len);
90 puts(_(cmds[i].help));
95 static int cmd_name_cmp(const void *elem1, const void *elem2)
97 const struct cmdname_help *e1 = elem1;
98 const struct cmdname_help *e2 = elem2;
100 return strcmp(e1->name, e2->name);
103 static void print_cmd_by_category(const struct category_description *catdesc,
106 struct cmdname_help *cmds;
111 for (i = 0; catdesc[i].desc; i++)
112 mask |= catdesc[i].category;
114 extract_cmds(&cmds, mask);
116 for (i = 0; cmds[i].name; i++, nr++) {
117 if (longest < strlen(cmds[i].name))
118 longest = strlen(cmds[i].name);
120 QSORT(cmds, nr, cmd_name_cmp);
122 for (i = 0; catdesc[i].desc; i++) {
123 uint32_t mask = catdesc[i].category;
124 const char *desc = catdesc[i].desc;
126 printf("\n%s\n", _(desc));
127 print_command_list(cmds, mask, longest);
131 *longest_p = longest;
134 void add_cmdname(struct cmdnames *cmds, const char *name, int len)
137 FLEX_ALLOC_MEM(ent, name, name, len);
140 ALLOC_GROW(cmds->names, cmds->cnt + 1, cmds->alloc);
141 cmds->names[cmds->cnt++] = ent;
144 static void clean_cmdnames(struct cmdnames *cmds)
147 for (i = 0; i < cmds->cnt; ++i)
148 free(cmds->names[i]);
154 static int cmdname_compare(const void *a_, const void *b_)
156 struct cmdname *a = *(struct cmdname **)a_;
157 struct cmdname *b = *(struct cmdname **)b_;
158 return strcmp(a->name, b->name);
161 static void uniq(struct cmdnames *cmds)
168 for (i = j = 1; i < cmds->cnt; i++) {
169 if (!strcmp(cmds->names[i]->name, cmds->names[j-1]->name))
170 free(cmds->names[i]);
172 cmds->names[j++] = cmds->names[i];
178 void exclude_cmds(struct cmdnames *cmds, struct cmdnames *excludes)
184 while (ci < cmds->cnt && ei < excludes->cnt) {
185 cmp = strcmp(cmds->names[ci]->name, excludes->names[ei]->name);
187 cmds->names[cj++] = cmds->names[ci++];
190 free(cmds->names[ci++]);
195 while (ci < cmds->cnt)
196 cmds->names[cj++] = cmds->names[ci++];
201 static void pretty_print_cmdnames(struct cmdnames *cmds, unsigned int colopts)
203 struct string_list list = STRING_LIST_INIT_NODUP;
204 struct column_options copts;
207 for (i = 0; i < cmds->cnt; i++)
208 string_list_append(&list, cmds->names[i]->name);
210 * always enable column display, we only consult column.*
211 * about layout strategy and stuff
213 colopts = (colopts & ~COL_ENABLE_MASK) | COL_ENABLED;
214 memset(&copts, 0, sizeof(copts));
217 print_columns(&list, colopts, &copts);
218 string_list_clear(&list, 0);
221 static void list_commands_in_dir(struct cmdnames *cmds,
225 DIR *dir = opendir(path);
227 struct strbuf buf = STRBUF_INIT;
235 strbuf_addf(&buf, "%s/", path);
238 while ((de = readdir(dir)) != NULL) {
242 if (!skip_prefix(de->d_name, prefix, &ent))
245 strbuf_setlen(&buf, len);
246 strbuf_addstr(&buf, de->d_name);
247 if (!is_executable(buf.buf))
250 entlen = strlen(ent);
251 strip_suffix(ent, ".exe", &entlen);
253 add_cmdname(cmds, ent, entlen);
256 strbuf_release(&buf);
259 void load_command_list(const char *prefix,
260 struct cmdnames *main_cmds,
261 struct cmdnames *other_cmds)
263 const char *env_path = getenv("PATH");
264 const char *exec_path = git_exec_path();
266 load_builtin_commands(prefix, main_cmds);
269 list_commands_in_dir(main_cmds, exec_path, prefix);
270 QSORT(main_cmds->names, main_cmds->cnt, cmdname_compare);
275 char *paths, *path, *colon;
276 path = paths = xstrdup(env_path);
278 if ((colon = strchr(path, PATH_SEP)))
280 if (!exec_path || strcmp(path, exec_path))
281 list_commands_in_dir(other_cmds, path, prefix);
289 QSORT(other_cmds->names, other_cmds->cnt, cmdname_compare);
292 exclude_cmds(other_cmds, main_cmds);
295 void list_commands(unsigned int colopts,
296 struct cmdnames *main_cmds, struct cmdnames *other_cmds)
298 if (main_cmds->cnt) {
299 const char *exec_path = git_exec_path();
300 printf_ln(_("available git commands in '%s'"), exec_path);
302 pretty_print_cmdnames(main_cmds, colopts);
306 if (other_cmds->cnt) {
307 printf_ln(_("git commands available from elsewhere on your $PATH"));
309 pretty_print_cmdnames(other_cmds, colopts);
314 void list_common_cmds_help(void)
316 puts(_("These are common Git commands used in various situations:"));
317 print_cmd_by_category(common_categories, NULL);
320 void list_all_main_cmds(struct string_list *list)
322 struct cmdnames main_cmds, other_cmds;
325 memset(&main_cmds, 0, sizeof(main_cmds));
326 memset(&other_cmds, 0, sizeof(other_cmds));
327 load_command_list("git-", &main_cmds, &other_cmds);
329 for (i = 0; i < main_cmds.cnt; i++)
330 string_list_append(list, main_cmds.names[i]->name);
332 clean_cmdnames(&main_cmds);
333 clean_cmdnames(&other_cmds);
336 void list_all_other_cmds(struct string_list *list)
338 struct cmdnames main_cmds, other_cmds;
341 memset(&main_cmds, 0, sizeof(main_cmds));
342 memset(&other_cmds, 0, sizeof(other_cmds));
343 load_command_list("git-", &main_cmds, &other_cmds);
345 for (i = 0; i < other_cmds.cnt; i++)
346 string_list_append(list, other_cmds.names[i]->name);
348 clean_cmdnames(&main_cmds);
349 clean_cmdnames(&other_cmds);
352 void list_cmds_by_category(struct string_list *list,
355 int i, n = ARRAY_SIZE(command_list);
358 for (i = 0; category_names[i]; i++) {
359 if (!strcmp(cat, category_names[i])) {
365 die(_("unsupported command listing type '%s'"), cat);
367 for (i = 0; i < n; i++) {
368 struct cmdname_help *cmd = command_list + i;
370 if (!(cmd->category & cat_id))
372 string_list_append(list, drop_prefix(cmd->name, cmd->category));
376 void list_cmds_by_config(struct string_list *list)
378 const char *cmd_list;
380 if (git_config_get_string_tmp("completion.commands", &cmd_list))
383 string_list_sort(list);
384 string_list_remove_duplicates(list, 0);
387 struct strbuf sb = STRBUF_INIT;
388 const char *p = strchrnul(cmd_list, ' ');
390 strbuf_add(&sb, cmd_list, p - cmd_list);
391 if (sb.buf[0] == '-')
392 string_list_remove(list, sb.buf + 1, 0);
394 string_list_insert(list, sb.buf);
402 void list_guides_help(void)
404 struct category_description catdesc[] = {
405 { CAT_guide, N_("The Git concept guides are:") },
408 print_cmd_by_category(catdesc, NULL);
412 static int get_alias(const char *var, const char *value, void *data)
414 struct string_list *list = data;
416 if (skip_prefix(var, "alias.", &var))
417 string_list_append(list, var)->util = xstrdup(value);
422 void list_all_cmds_help(void)
424 struct string_list others = STRING_LIST_INIT_DUP;
425 struct string_list alias_list = STRING_LIST_INIT_DUP;
426 struct cmdname_help *aliases;
429 printf_ln(_("See 'git help <command>' to read about a specific subcommand"));
430 print_cmd_by_category(main_categories, &longest);
432 list_all_other_cmds(&others);
434 printf("\n%s\n", _("External commands"));
435 for (i = 0; i < others.nr; i++)
436 printf(" %s\n", others.items[i].string);
437 string_list_clear(&others, 0);
439 git_config(get_alias, &alias_list);
440 string_list_sort(&alias_list);
442 for (i = 0; i < alias_list.nr; i++) {
443 size_t len = strlen(alias_list.items[i].string);
449 printf("\n%s\n", _("Command aliases"));
450 ALLOC_ARRAY(aliases, alias_list.nr + 1);
451 for (i = 0; i < alias_list.nr; i++) {
452 aliases[i].name = alias_list.items[i].string;
453 aliases[i].help = alias_list.items[i].util;
454 aliases[i].category = 1;
456 aliases[alias_list.nr].name = NULL;
457 print_command_list(aliases, 1, longest);
460 string_list_clear(&alias_list, 1);
463 int is_in_cmdlist(struct cmdnames *c, const char *s)
466 for (i = 0; i < c->cnt; i++)
467 if (!strcmp(s, c->names[i]->name))
472 static int autocorrect;
473 static struct cmdnames aliases;
475 static int git_unknown_cmd_config(const char *var, const char *value, void *cb)
479 if (!strcmp(var, "help.autocorrect"))
480 autocorrect = git_config_int(var,value);
481 /* Also use aliases for command lookup */
482 if (skip_prefix(var, "alias.", &p))
483 add_cmdname(&aliases, p, strlen(p));
485 return git_default_config(var, value, cb);
488 static int levenshtein_compare(const void *p1, const void *p2)
490 const struct cmdname *const *c1 = p1, *const *c2 = p2;
491 const char *s1 = (*c1)->name, *s2 = (*c2)->name;
494 return l1 != l2 ? l1 - l2 : strcmp(s1, s2);
497 static void add_cmd_list(struct cmdnames *cmds, struct cmdnames *old)
500 ALLOC_GROW(cmds->names, cmds->cnt + old->cnt, cmds->alloc);
502 for (i = 0; i < old->cnt; i++)
503 cmds->names[cmds->cnt++] = old->names[i];
504 FREE_AND_NULL(old->names);
508 /* An empirically derived magic number */
509 #define SIMILARITY_FLOOR 7
510 #define SIMILAR_ENOUGH(x) ((x) < SIMILARITY_FLOOR)
512 static const char bad_interpreter_advice[] =
513 N_("'%s' appears to be a git command, but we were not\n"
514 "able to execute it. Maybe git-%s is broken?");
516 const char *help_unknown_cmd(const char *cmd)
518 int i, n, best_similarity = 0;
519 struct cmdnames main_cmds, other_cmds;
520 struct cmdname_help *common_cmds;
522 memset(&main_cmds, 0, sizeof(main_cmds));
523 memset(&other_cmds, 0, sizeof(other_cmds));
524 memset(&aliases, 0, sizeof(aliases));
526 read_early_config(git_unknown_cmd_config, NULL);
528 load_command_list("git-", &main_cmds, &other_cmds);
530 add_cmd_list(&main_cmds, &aliases);
531 add_cmd_list(&main_cmds, &other_cmds);
532 QSORT(main_cmds.names, main_cmds.cnt, cmdname_compare);
535 extract_cmds(&common_cmds, common_mask);
537 /* This abuses cmdname->len for levenshtein distance */
538 for (i = 0, n = 0; i < main_cmds.cnt; i++) {
539 int cmp = 0; /* avoid compiler stupidity */
540 const char *candidate = main_cmds.names[i]->name;
543 * An exact match means we have the command, but
544 * for some reason exec'ing it gave us ENOENT; probably
545 * it's a bad interpreter in the #! line.
547 if (!strcmp(candidate, cmd))
548 die(_(bad_interpreter_advice), cmd, cmd);
550 /* Does the candidate appear in common_cmds list? */
551 while (common_cmds[n].name &&
552 (cmp = strcmp(common_cmds[n].name, candidate)) < 0)
554 if (common_cmds[n].name && !cmp) {
555 /* Yes, this is one of the common commands */
556 n++; /* use the entry from common_cmds[] */
557 if (starts_with(candidate, cmd)) {
558 /* Give prefix match a very good score */
559 main_cmds.names[i]->len = 0;
564 main_cmds.names[i]->len =
565 levenshtein(cmd, candidate, 0, 2, 1, 3) + 1;
567 FREE_AND_NULL(common_cmds);
569 QSORT(main_cmds.names, main_cmds.cnt, levenshtein_compare);
572 die(_("Uh oh. Your system reports no Git commands at all."));
574 /* skip and count prefix matches */
575 for (n = 0; n < main_cmds.cnt && !main_cmds.names[n]->len; n++)
576 ; /* still counting */
578 if (main_cmds.cnt <= n) {
579 /* prefix matches with everything? that is too ambiguous */
580 best_similarity = SIMILARITY_FLOOR + 1;
582 /* count all the most similar ones */
583 for (best_similarity = main_cmds.names[n++]->len;
584 (n < main_cmds.cnt &&
585 best_similarity == main_cmds.names[n]->len);
587 ; /* still counting */
589 if (autocorrect && n == 1 && SIMILAR_ENOUGH(best_similarity)) {
590 const char *assumed = main_cmds.names[0]->name;
591 main_cmds.names[0] = NULL;
592 clean_cmdnames(&main_cmds);
594 _("WARNING: You called a Git command named '%s', "
595 "which does not exist."),
599 _("Continuing under the assumption that "
604 _("Continuing in %0.1f seconds, "
605 "assuming that you meant '%s'."),
606 (float)autocorrect/10.0, assumed);
607 sleep_millisec(autocorrect * 100);
612 fprintf_ln(stderr, _("git: '%s' is not a git command. See 'git --help'."), cmd);
614 if (SIMILAR_ENOUGH(best_similarity)) {
616 Q_("\nThe most similar command is",
617 "\nThe most similar commands are",
620 for (i = 0; i < n; i++)
621 fprintf(stderr, "\t%s\n", main_cmds.names[i]->name);
627 void get_version_info(struct strbuf *buf, int show_build_options)
630 * The format of this string should be kept stable for compatibility
631 * with external projects that rely on the output of "git version".
633 * Always show the version, even if other options are given.
635 strbuf_addf(buf, "git version %s\n", git_version_string);
637 if (show_build_options) {
638 strbuf_addf(buf, "cpu: %s\n", GIT_HOST_CPU);
639 if (git_built_from_commit_string[0])
640 strbuf_addf(buf, "built from commit: %s\n",
641 git_built_from_commit_string);
643 strbuf_addstr(buf, "no commit associated with this build\n");
644 strbuf_addf(buf, "sizeof-long: %d\n", (int)sizeof(long));
645 strbuf_addf(buf, "sizeof-size_t: %d\n", (int)sizeof(size_t));
646 strbuf_addf(buf, "shell-path: %s\n", SHELL_PATH);
647 /* NEEDSWORK: also save and output GIT-BUILD_OPTIONS? */
651 int cmd_version(int argc, const char **argv, const char *prefix)
653 struct strbuf buf = STRBUF_INIT;
654 int build_options = 0;
655 const char * const usage[] = {
656 N_("git version [<options>]"),
659 struct option options[] = {
660 OPT_BOOL(0, "build-options", &build_options,
661 "also print build options"),
665 argc = parse_options(argc, argv, prefix, options, usage, 0);
667 get_version_info(&buf, build_options);
668 printf("%s", buf.buf);
670 strbuf_release(&buf);
675 struct similar_ref_cb {
676 const char *base_ref;
677 struct string_list *similar_refs;
680 static int append_similar_ref(const char *refname, const struct object_id *oid,
681 int flags, void *cb_data)
683 struct similar_ref_cb *cb = (struct similar_ref_cb *)(cb_data);
684 char *branch = strrchr(refname, '/') + 1;
686 /* A remote branch of the same name is deemed similar */
687 if (starts_with(refname, "refs/remotes/") &&
688 !strcmp(branch, cb->base_ref))
689 string_list_append_nodup(cb->similar_refs,
690 shorten_unambiguous_ref(refname, 1));
694 static struct string_list guess_refs(const char *ref)
696 struct similar_ref_cb ref_cb;
697 struct string_list similar_refs = STRING_LIST_INIT_DUP;
699 ref_cb.base_ref = ref;
700 ref_cb.similar_refs = &similar_refs;
701 for_each_ref(append_similar_ref, &ref_cb);
705 NORETURN void help_unknown_ref(const char *ref, const char *cmd,
709 struct string_list suggested_refs = guess_refs(ref);
711 fprintf_ln(stderr, _("%s: %s - %s"), cmd, ref, error);
713 if (suggested_refs.nr > 0) {
715 Q_("\nDid you mean this?",
716 "\nDid you mean one of these?",
718 for (i = 0; i < suggested_refs.nr; i++)
719 fprintf(stderr, "\t%s\n", suggested_refs.items[i].string);
722 string_list_clear(&suggested_refs, 0);