This is also available at github/stefanbeller/git submodule-parallel-update It applies on top of a merge of sb/submodule-parallel-fetch (including the "run-command: detect finished children by closed pipe rather than waitpid" sent yesterday) with "Merge branch 'rs/daemon-plug-child-leak' into sb/submodule-parallel-update" (d075d2604c0f9204) The diff to v4 is below, just a change in braces. My main motivation for resending this patch series is have it available to reviewers of the series I am going to send next, which builds on top of this series. Thanks, Stefan Stefan Beller (9): run_processes_parallel: delimit intermixed task output submodule-config: keep update strategy around submodule-config: drop check against NULL submodule-config: remove name_and_item_from_var submodule-config: introduce parse_generic_submodule_config fetching submodules: respect `submodule.fetchJobs` config option git submodule update: have a dedicated helper for cloning submodule update: expose parallelism to the user clone: allow an explicit argument for parallel submodule clones Documentation/config.txt | 7 ++ Documentation/git-clone.txt | 6 +- Documentation/git-submodule.txt | 7 +- builtin/clone.c | 19 +++- builtin/fetch.c | 2 +- builtin/submodule--helper.c | 239 ++++++++++++++++++++++++++++++++++++++++ git-submodule.sh | 54 ++++----- run-command.c | 4 + submodule-config.c | 109 +++++++++++------- submodule-config.h | 3 + submodule.c | 5 + t/t5526-fetch-submodules.sh | 14 +++ t/t7400-submodule-basic.sh | 4 +- t/t7406-submodule-update.sh | 27 +++++ 14 files changed, 417 insertions(+), 83 deletions(-) Interdiff to series v4: (ignoring the merge base as that changed, too) diff --git a/builtin/submodule--helper.c b/builtin/submodule--helper.c index 662d329..254824a 100644 --- a/builtin/submodule--helper.c +++ b/builtin/submodule--helper.c @@ -487,9 +487,9 @@ static int update_clone(int argc, const char **argv, const char *prefix) return 1; } - for_each_string_list_item(item, &pp.projectlines) { + for_each_string_list_item(item, &pp.projectlines) utf8_fprintf(stdout, "%s", item->string); - } + return 0; } -- 2.6.1.261.g0d9c4c1 -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html