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)") },
31 static const char *drop_prefix(const char *name)
35 if (skip_prefix(name, "git-", &new_name))
41 static void extract_cmds(struct cmdname_help **p_cmds, uint32_t mask)
44 struct cmdname_help *cmds;
46 if (ARRAY_SIZE(command_list) == 0)
47 BUG("empty command_list[] is a sign of broken generate-cmdlist.sh");
49 ALLOC_ARRAY(cmds, ARRAY_SIZE(command_list) + 1);
51 for (i = 0; i < ARRAY_SIZE(command_list); i++) {
52 const struct cmdname_help *cmd = command_list + i;
54 if (!(cmd->category & mask))
58 cmds[nr].name = drop_prefix(cmd->name);
66 static void print_command_list(const struct cmdname_help *cmds,
67 uint32_t mask, int longest)
71 for (i = 0; cmds[i].name; i++) {
72 if (cmds[i].category & mask) {
73 printf(" %s ", cmds[i].name);
74 mput_char(' ', longest - strlen(cmds[i].name));
75 puts(_(cmds[i].help));
80 static int cmd_name_cmp(const void *elem1, const void *elem2)
82 const struct cmdname_help *e1 = elem1;
83 const struct cmdname_help *e2 = elem2;
85 return strcmp(e1->name, e2->name);
88 static void print_cmd_by_category(const struct category_description *catdesc)
90 struct cmdname_help *cmds;
95 for (i = 0; catdesc[i].desc; i++)
96 mask |= catdesc[i].category;
98 extract_cmds(&cmds, mask);
100 for (i = 0; cmds[i].name; i++, nr++) {
101 if (longest < strlen(cmds[i].name))
102 longest = strlen(cmds[i].name);
104 QSORT(cmds, nr, cmd_name_cmp);
106 for (i = 0; catdesc[i].desc; i++) {
107 uint32_t mask = catdesc[i].category;
108 const char *desc = catdesc[i].desc;
110 printf("\n%s\n", _(desc));
111 print_command_list(cmds, mask, longest);
116 void add_cmdname(struct cmdnames *cmds, const char *name, int len)
119 FLEX_ALLOC_MEM(ent, name, name, len);
122 ALLOC_GROW(cmds->names, cmds->cnt + 1, cmds->alloc);
123 cmds->names[cmds->cnt++] = ent;
126 static void clean_cmdnames(struct cmdnames *cmds)
129 for (i = 0; i < cmds->cnt; ++i)
130 free(cmds->names[i]);
136 static int cmdname_compare(const void *a_, const void *b_)
138 struct cmdname *a = *(struct cmdname **)a_;
139 struct cmdname *b = *(struct cmdname **)b_;
140 return strcmp(a->name, b->name);
143 static void uniq(struct cmdnames *cmds)
150 for (i = j = 1; i < cmds->cnt; i++) {
151 if (!strcmp(cmds->names[i]->name, cmds->names[j-1]->name))
152 free(cmds->names[i]);
154 cmds->names[j++] = cmds->names[i];
160 void exclude_cmds(struct cmdnames *cmds, struct cmdnames *excludes)
166 while (ci < cmds->cnt && ei < excludes->cnt) {
167 cmp = strcmp(cmds->names[ci]->name, excludes->names[ei]->name);
169 cmds->names[cj++] = cmds->names[ci++];
172 free(cmds->names[ci++]);
177 while (ci < cmds->cnt)
178 cmds->names[cj++] = cmds->names[ci++];
183 static void pretty_print_cmdnames(struct cmdnames *cmds, unsigned int colopts)
185 struct string_list list = STRING_LIST_INIT_NODUP;
186 struct column_options copts;
189 for (i = 0; i < cmds->cnt; i++)
190 string_list_append(&list, cmds->names[i]->name);
192 * always enable column display, we only consult column.*
193 * about layout strategy and stuff
195 colopts = (colopts & ~COL_ENABLE_MASK) | COL_ENABLED;
196 memset(&copts, 0, sizeof(copts));
199 print_columns(&list, colopts, &copts);
200 string_list_clear(&list, 0);
203 static void list_commands_in_dir(struct cmdnames *cmds,
207 DIR *dir = opendir(path);
209 struct strbuf buf = STRBUF_INIT;
217 strbuf_addf(&buf, "%s/", path);
220 while ((de = readdir(dir)) != NULL) {
224 if (!skip_prefix(de->d_name, prefix, &ent))
227 strbuf_setlen(&buf, len);
228 strbuf_addstr(&buf, de->d_name);
229 if (!is_executable(buf.buf))
232 entlen = strlen(ent);
233 strip_suffix(ent, ".exe", &entlen);
235 add_cmdname(cmds, ent, entlen);
238 strbuf_release(&buf);
241 void load_command_list(const char *prefix,
242 struct cmdnames *main_cmds,
243 struct cmdnames *other_cmds)
245 const char *env_path = getenv("PATH");
246 const char *exec_path = git_exec_path();
249 list_commands_in_dir(main_cmds, exec_path, prefix);
250 QSORT(main_cmds->names, main_cmds->cnt, cmdname_compare);
255 char *paths, *path, *colon;
256 path = paths = xstrdup(env_path);
258 if ((colon = strchr(path, PATH_SEP)))
260 if (!exec_path || strcmp(path, exec_path))
261 list_commands_in_dir(other_cmds, path, prefix);
269 QSORT(other_cmds->names, other_cmds->cnt, cmdname_compare);
272 exclude_cmds(other_cmds, main_cmds);
275 void list_commands(unsigned int colopts,
276 struct cmdnames *main_cmds, struct cmdnames *other_cmds)
278 if (main_cmds->cnt) {
279 const char *exec_path = git_exec_path();
280 printf_ln(_("available git commands in '%s'"), exec_path);
282 pretty_print_cmdnames(main_cmds, colopts);
286 if (other_cmds->cnt) {
287 printf_ln(_("git commands available from elsewhere on your $PATH"));
289 pretty_print_cmdnames(other_cmds, colopts);
294 void list_common_cmds_help(void)
296 puts(_("These are common Git commands used in various situations:"));
297 print_cmd_by_category(common_categories);
300 int is_in_cmdlist(struct cmdnames *c, const char *s)
303 for (i = 0; i < c->cnt; i++)
304 if (!strcmp(s, c->names[i]->name))
309 static int autocorrect;
310 static struct cmdnames aliases;
312 static int git_unknown_cmd_config(const char *var, const char *value, void *cb)
316 if (!strcmp(var, "help.autocorrect"))
317 autocorrect = git_config_int(var,value);
318 /* Also use aliases for command lookup */
319 if (skip_prefix(var, "alias.", &p))
320 add_cmdname(&aliases, p, strlen(p));
322 return git_default_config(var, value, cb);
325 static int levenshtein_compare(const void *p1, const void *p2)
327 const struct cmdname *const *c1 = p1, *const *c2 = p2;
328 const char *s1 = (*c1)->name, *s2 = (*c2)->name;
331 return l1 != l2 ? l1 - l2 : strcmp(s1, s2);
334 static void add_cmd_list(struct cmdnames *cmds, struct cmdnames *old)
337 ALLOC_GROW(cmds->names, cmds->cnt + old->cnt, cmds->alloc);
339 for (i = 0; i < old->cnt; i++)
340 cmds->names[cmds->cnt++] = old->names[i];
341 FREE_AND_NULL(old->names);
345 /* An empirically derived magic number */
346 #define SIMILARITY_FLOOR 7
347 #define SIMILAR_ENOUGH(x) ((x) < SIMILARITY_FLOOR)
349 static const char bad_interpreter_advice[] =
350 N_("'%s' appears to be a git command, but we were not\n"
351 "able to execute it. Maybe git-%s is broken?");
353 const char *help_unknown_cmd(const char *cmd)
355 int i, n, best_similarity = 0;
356 struct cmdnames main_cmds, other_cmds;
357 struct cmdname_help *common_cmds;
359 memset(&main_cmds, 0, sizeof(main_cmds));
360 memset(&other_cmds, 0, sizeof(other_cmds));
361 memset(&aliases, 0, sizeof(aliases));
363 read_early_config(git_unknown_cmd_config, NULL);
365 load_command_list("git-", &main_cmds, &other_cmds);
367 add_cmd_list(&main_cmds, &aliases);
368 add_cmd_list(&main_cmds, &other_cmds);
369 QSORT(main_cmds.names, main_cmds.cnt, cmdname_compare);
372 extract_cmds(&common_cmds, common_mask);
374 /* This abuses cmdname->len for levenshtein distance */
375 for (i = 0, n = 0; i < main_cmds.cnt; i++) {
376 int cmp = 0; /* avoid compiler stupidity */
377 const char *candidate = main_cmds.names[i]->name;
380 * An exact match means we have the command, but
381 * for some reason exec'ing it gave us ENOENT; probably
382 * it's a bad interpreter in the #! line.
384 if (!strcmp(candidate, cmd))
385 die(_(bad_interpreter_advice), cmd, cmd);
387 /* Does the candidate appear in common_cmds list? */
388 while (common_cmds[n].name &&
389 (cmp = strcmp(common_cmds[n].name, candidate)) < 0)
391 if (common_cmds[n].name && !cmp) {
392 /* Yes, this is one of the common commands */
393 n++; /* use the entry from common_cmds[] */
394 if (starts_with(candidate, cmd)) {
395 /* Give prefix match a very good score */
396 main_cmds.names[i]->len = 0;
401 main_cmds.names[i]->len =
402 levenshtein(cmd, candidate, 0, 2, 1, 3) + 1;
404 FREE_AND_NULL(common_cmds);
406 QSORT(main_cmds.names, main_cmds.cnt, levenshtein_compare);
409 die(_("Uh oh. Your system reports no Git commands at all."));
411 /* skip and count prefix matches */
412 for (n = 0; n < main_cmds.cnt && !main_cmds.names[n]->len; n++)
413 ; /* still counting */
415 if (main_cmds.cnt <= n) {
416 /* prefix matches with everything? that is too ambiguous */
417 best_similarity = SIMILARITY_FLOOR + 1;
419 /* count all the most similar ones */
420 for (best_similarity = main_cmds.names[n++]->len;
421 (n < main_cmds.cnt &&
422 best_similarity == main_cmds.names[n]->len);
424 ; /* still counting */
426 if (autocorrect && n == 1 && SIMILAR_ENOUGH(best_similarity)) {
427 const char *assumed = main_cmds.names[0]->name;
428 main_cmds.names[0] = NULL;
429 clean_cmdnames(&main_cmds);
431 _("WARNING: You called a Git command named '%s', "
432 "which does not exist."),
436 _("Continuing under the assumption that "
441 _("Continuing in %0.1f seconds, "
442 "assuming that you meant '%s'."),
443 (float)autocorrect/10.0, assumed);
444 sleep_millisec(autocorrect * 100);
449 fprintf_ln(stderr, _("git: '%s' is not a git command. See 'git --help'."), cmd);
451 if (SIMILAR_ENOUGH(best_similarity)) {
453 Q_("\nThe most similar command is",
454 "\nThe most similar commands are",
457 for (i = 0; i < n; i++)
458 fprintf(stderr, "\t%s\n", main_cmds.names[i]->name);
464 int cmd_version(int argc, const char **argv, const char *prefix)
466 int build_options = 0;
467 const char * const usage[] = {
468 N_("git version [<options>]"),
471 struct option options[] = {
472 OPT_BOOL(0, "build-options", &build_options,
473 "also print build options"),
477 argc = parse_options(argc, argv, prefix, options, usage, 0);
480 * The format of this string should be kept stable for compatibility
481 * with external projects that rely on the output of "git version".
483 * Always show the version, even if other options are given.
485 printf("git version %s\n", git_version_string);
488 printf("cpu: %s\n", GIT_HOST_CPU);
489 if (git_built_from_commit_string[0])
490 printf("built from commit: %s\n",
491 git_built_from_commit_string);
493 printf("no commit associated with this build\n");
494 printf("sizeof-long: %d\n", (int)sizeof(long));
495 /* NEEDSWORK: also save and output GIT-BUILD_OPTIONS? */
500 struct similar_ref_cb {
501 const char *base_ref;
502 struct string_list *similar_refs;
505 static int append_similar_ref(const char *refname, const struct object_id *oid,
506 int flags, void *cb_data)
508 struct similar_ref_cb *cb = (struct similar_ref_cb *)(cb_data);
509 char *branch = strrchr(refname, '/') + 1;
512 /* A remote branch of the same name is deemed similar */
513 if (skip_prefix(refname, "refs/remotes/", &remote) &&
514 !strcmp(branch, cb->base_ref))
515 string_list_append(cb->similar_refs, remote);
519 static struct string_list guess_refs(const char *ref)
521 struct similar_ref_cb ref_cb;
522 struct string_list similar_refs = STRING_LIST_INIT_NODUP;
524 ref_cb.base_ref = ref;
525 ref_cb.similar_refs = &similar_refs;
526 for_each_ref(append_similar_ref, &ref_cb);
530 void help_unknown_ref(const char *ref, const char *cmd, const char *error)
533 struct string_list suggested_refs = guess_refs(ref);
535 fprintf_ln(stderr, _("%s: %s - %s"), cmd, ref, error);
537 if (suggested_refs.nr > 0) {
539 Q_("\nDid you mean this?",
540 "\nDid you mean one of these?",
542 for (i = 0; i < suggested_refs.nr; i++)
543 fprintf(stderr, "\t%s\n", suggested_refs.items[i].string);
546 string_list_clear(&suggested_refs, 0);