Andrew's git
/
gitweb.git
/ diff
summary
|
log
|
commit
| diff |
tree
commit
grep
author
committer
pickaxe
?
re
Merge branch 'sb/pull-rebase-submodule' into next
author
Junio C Hamano
<gitster@pobox.com>
Thu, 8 Feb 2018 23:08:26 +0000
(15:08 -0800)
committer
Junio C Hamano
<gitster@pobox.com>
Thu, 8 Feb 2018 23:08:26 +0000
(15:08 -0800)
"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
builtin/pull.c
patch
|
blob
|
history
raw
(from parent 1:
370f06a
)
diff --git
a/builtin/pull.c
b/builtin/pull.c
index 511dbbe0f6e25d8f0e8c6ce511cc0ff734adc9bc..1876271af9423dc58bb66d00bdd1eaa62a983dab 100644
(file)
--- 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);
}