MCPcopy Create free account
hub / github.com/git/git / list_all_cmds_help_external_commands

Function list_all_cmds_help_external_commands

help.c:473–484  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

471}
472
473static void list_all_cmds_help_external_commands(void)
474{
475 struct string_list others = STRING_LIST_INIT_DUP;
476 int i;
477
478 list_all_other_cmds(&others);
479 if (others.nr)
480 printf("\n%s\n", _("External commands"));
481 for (i = 0; i < others.nr; i++)
482 printf(" %s\n", others.items[i].string);
483 string_list_clear(&others, 0);
484}
485
486static void list_all_cmds_help_aliases(int longest)
487{

Callers 1

list_all_cmds_helpFunction · 0.85

Calls 2

list_all_other_cmdsFunction · 0.85
string_list_clearFunction · 0.85

Tested by

no test coverage detected