Skip to content

Commit 157ee05

Browse files
committed
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
2 parents 9db2291 + a56771a commit 157ee05

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

builtin/pull.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -574,6 +574,7 @@ static int rebase_submodules(void)
574574
cp.no_stdin = 1;
575575
argv_array_pushl(&cp.args, "submodule", "update",
576576
"--recursive", "--rebase", NULL);
577+
argv_push_verbosity(&cp.args);
577578

578579
return run_command(&cp);
579580
}
@@ -586,6 +587,7 @@ static int update_submodules(void)
586587
cp.no_stdin = 1;
587588
argv_array_pushl(&cp.args, "submodule", "update",
588589
"--recursive", "--checkout", NULL);
590+
argv_push_verbosity(&cp.args);
589591

590592
return run_command(&cp);
591593
}

0 commit comments

Comments
 (0)