Re: [PATCH] builtin/pull: respect verbosity settings in submodules
From: Junio C Hamano <hidden>
Date: 2018-01-25 19:18:54
Stefan Beller [off-list ref] writes:
In a6d7eb2c7a (pull: optionally rebase submodules (remote submodule changes only), 2017-06-23), we taught Git how to rebase submodules in a pull. However we missed to pass on the verbosity settings.
Makes sense. Thanks.
quoted hunk
Reported-by: Robin H. Johnson <redacted> Signed-off-by: Stefan Beller <redacted> --- builtin/pull.c | 2 ++ 1 file changed, 2 insertions(+)diff --git a/builtin/pull.c b/builtin/pull.c index 511dbbe0f6..1876271af9 100644 --- a/builtin/pull.c +++ b/builtin/pull.c@@ -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); }