Stefan Beller <sbeller@xxxxxxxxxx> writes: > This allows to configure fetching and updating in parallel > without having the command line option. > > This moved the responsibility to determine how many parallel processes > to start from builtin/fetch to submodule.c as we need a way to communicate > "The user did not specify the number of parallel processes in the command > line options" in the builtin fetch. The submodule code takes care of > the precedence (CLI > config > default) > > Signed-off-by: Stefan Beller <sbeller@xxxxxxxxxx> > Signed-off-by: Junio C Hamano <gitster@xxxxxxxxx> > --- > Documentation/config.txt | 7 +++++++ > builtin/fetch.c | 2 +- > submodule-config.c | 15 +++++++++++++++ > submodule-config.h | 2 ++ > submodule.c | 5 +++++ > t/t5526-fetch-submodules.sh | 14 ++++++++++++++ > 6 files changed, 44 insertions(+), 1 deletion(-) > > diff --git a/Documentation/config.txt b/Documentation/config.txt > index 2d06b11..eda3276 100644 > --- a/Documentation/config.txt > +++ b/Documentation/config.txt > @@ -2646,6 +2646,13 @@ submodule.<name>.ignore:: > "--ignore-submodules" option. The 'git submodule' commands are not > affected by this setting. > > +submodule.fetchJobs:: > + This is used to determine how many submodules will be > + fetched/cloned at the same time. Specifying a positive integer > + allows up to that number of submodules being fetched in parallel. s/being //? Either would be fine, but shorter might be better? I dunno. s/is used to determine/specifies/? That may shorten the whole thing. Specifies how many submodules are fetched/cloned at the same time. A positive integer allows up to that number of ... > + This is used in fetch and clone operations only. A value of 0 will > + give some reasonable configuration. It defaults to 1. s/used/respected/, perhaps? s/reasonable configuration/reasonable default/, perhaps? > diff --git a/builtin/fetch.c b/builtin/fetch.c > index 586840d..5aa1c2d 100644 > --- a/builtin/fetch.c > +++ b/builtin/fetch.c > @@ -37,7 +37,7 @@ static int prune = -1; /* unspecified */ > static int all, append, dry_run, force, keep, multiple, update_head_ok, verbosity; > static int progress = -1, recurse_submodules = RECURSE_SUBMODULES_DEFAULT; > static int tags = TAGS_DEFAULT, unshallow, update_shallow; > -static int max_children = 1; > +static int max_children = -1; > static const char *depth; > static const char *upload_pack; > static struct strbuf default_rla = STRBUF_INIT; > diff --git a/submodule-config.c b/submodule-config.c > index 29e21b2..a32259e 100644 > --- a/submodule-config.c > +++ b/submodule-config.c > @@ -32,6 +32,7 @@ enum lookup_type { > > static struct submodule_cache cache; > static int is_cache_init; > +static int parallel_jobs = -1; > > static int config_path_cmp(const struct submodule_entry *a, > const struct submodule_entry *b, > @@ -239,6 +240,15 @@ static int parse_generic_submodule_config(const char *key, > const char *value, > struct parse_config_parameter *me) > { > + if (!strcmp(key, "fetchjobs")) { > + parallel_jobs = strtol(value, NULL, 10); We do not notice trailing 'x' in "[submodule] fetchjobs = 10x"; intended? I am wondering this is a good excuse to invent git_parse_long() and git_config_long() that do not exist yet. In general, I'd personally prefer to reduce the number of calls to strto[u]l that does not check trailing garbage, not increase it. If we reject negatives anyway, we might be able to just use git_parse_ulong() without adding new "signed" variants. -- 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