builtin/pull: respect verbosity settings in submodules
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. Reported-by: Robin H. Johnson <robbat2@gentoo.org> Signed-off-by: Stefan Beller <sbeller@google.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Stefan Beller committed
Jan 25, 2018 at 11:08 UTC
a56771a668dd4963675914bc5da0e1e015952dae
1 file changed
+2
builtin/pull.c
+2
@@ -553,6 +553,7 @@ static int rebase_submodules(void)
553
cp.no_stdin = 1;
554
argv_array_pushl(&cp.args, "submodule", "update",
555
"--recursive", "--rebase", NULL);
556
+ argv_push_verbosity(&cp.args);
557
558
return run_command(&cp);
559
}
@@ -565,6 +566,7 @@ static int update_submodules(void)
566
cp.no_stdin = 1;
567
argv_array_pushl(&cp.args, "submodule", "update",
568
"--recursive", "--checkout", NULL);
569
+ argv_push_verbosity(&cp.args);
570
571
return run_command(&cp);
572
}