Re: [PATCH 4/9] submodule.c: move global changed_submodule_names into fetch submodule struct

2018-10-18 Thread Stefan Beller
On Wed, Oct 17, 2018 at 2:26 PM Jonathan Tan wrote: > > > The `changed_submodule_names` are only used for fetching, so let's make it > > part of the struct that is passed around for fetching submodules. > > Keep the titles of commit messages to 50 characters or under. renamed > > > +static void

Re: [PATCH 4/9] submodule.c: move global changed_submodule_names into fetch submodule struct

2018-10-17 Thread Jonathan Tan
> The `changed_submodule_names` are only used for fetching, so let's make it > part of the struct that is passed around for fetching submodules. Keep the titles of commit messages to 50 characters or under. > +static void calculate_changed_submodule_paths( > + struct submodule_parallel_fetch

[PATCH 4/9] submodule.c: move global changed_submodule_names into fetch submodule struct

2018-10-16 Thread Stefan Beller
The `changed_submodule_names` are only used for fetching, so let's make it part of the struct that is passed around for fetching submodules. Signed-off-by: Stefan Beller Signed-off-by: Junio C Hamano --- submodule.c | 42 +++--- 1 file changed, 23