merge(3p/git): Merge git upstream at v2.26.2
This commit is contained in:
commit
5229c9b232
1006 changed files with 149006 additions and 60819 deletions
6
third_party/git/git.c
vendored
6
third_party/git/git.c
vendored
|
|
@ -369,8 +369,7 @@ static int handle_alias(int *argcp, const char ***argv)
|
|||
die(_("alias '%s' changes environment variables.\n"
|
||||
"You can use '!git' in the alias to do this"),
|
||||
alias_command);
|
||||
memmove(new_argv - option_count, new_argv,
|
||||
count * sizeof(char *));
|
||||
MOVE_ARRAY(new_argv - option_count, new_argv, count);
|
||||
new_argv -= option_count;
|
||||
|
||||
if (count < 1)
|
||||
|
|
@ -385,7 +384,7 @@ static int handle_alias(int *argcp, const char ***argv)
|
|||
|
||||
REALLOC_ARRAY(new_argv, count + *argcp);
|
||||
/* insert after command name */
|
||||
memcpy(new_argv + count, *argv + 1, sizeof(char *) * *argcp);
|
||||
COPY_ARRAY(new_argv + count, *argv + 1, *argcp);
|
||||
|
||||
trace2_cmd_alias(alias_command, new_argv);
|
||||
trace2_cmd_list_config();
|
||||
|
|
@ -573,6 +572,7 @@ static struct cmd_struct commands[] = {
|
|||
{ "show-branch", cmd_show_branch, RUN_SETUP },
|
||||
{ "show-index", cmd_show_index },
|
||||
{ "show-ref", cmd_show_ref, RUN_SETUP },
|
||||
{ "sparse-checkout", cmd_sparse_checkout, RUN_SETUP | NEED_WORK_TREE },
|
||||
{ "stage", cmd_add, RUN_SETUP | NEED_WORK_TREE },
|
||||
/*
|
||||
* NEEDSWORK: Until the builtin stash is thoroughly robust and no
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue