submodule: remove submodule.fetchjobs from submodule-config parsing
The '.gitmodules' file should only contain information pertinent to configuring individual submodules (name to path mapping, URL where to obtain the submodule, etc.) while other configuration like the number of jobs to use when fetching submodules should be a part of the repository's config. Remove the 'submodule.fetchjobs' configuration option from the general submodule-config parsing and instead rely on using the 'config_from_gitmodules()' in order to maintain backwards compatibility with this config being placed in the '.gitmodules' file. Signed-off-by: Brandon Williams <bmwill@google.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:

committed by
Junio C Hamano

parent
b22e51cb26
commit
f20e7c1ea2
@ -27,6 +27,7 @@ struct repository;
|
||||
|
||||
extern void submodule_cache_free(struct submodule_cache *cache);
|
||||
|
||||
extern int parse_submodule_fetchjobs(const char *var, const char *value);
|
||||
extern int parse_fetch_recurse_submodules_arg(const char *opt, const char *arg);
|
||||
struct option;
|
||||
extern int option_fetch_parse_recurse_submodules(const struct option *opt,
|
||||
|
Reference in New Issue
Block a user