зеркало из https://github.com/microsoft/git.git
Merge branch 'sb/pull-rebase-submodule'
"git pull --rebase" did not pass verbosity setting down when recursing into a submodule. * sb/pull-rebase-submodule: builtin/pull: respect verbosity settings in submodules
This commit is contained in:
Коммит
157ee05061
|
@ -574,6 +574,7 @@ static int rebase_submodules(void)
|
|||
cp.no_stdin = 1;
|
||||
argv_array_pushl(&cp.args, "submodule", "update",
|
||||
"--recursive", "--rebase", NULL);
|
||||
argv_push_verbosity(&cp.args);
|
||||
|
||||
return run_command(&cp);
|
||||
}
|
||||
|
@ -586,6 +587,7 @@ static int update_submodules(void)
|
|||
cp.no_stdin = 1;
|
||||
argv_array_pushl(&cp.args, "submodule", "update",
|
||||
"--recursive", "--checkout", NULL);
|
||||
argv_push_verbosity(&cp.args);
|
||||
|
||||
return run_command(&cp);
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче