On Fri, Aug 21, 2015 at 12:23 PM, Junio C Hamano wrote:
> Stefan Beller writes:
>
>> +struct submodule_args {
>> + const char *name;
>> + const char *path;
>> + const char *sha1;
>> + const char *toplevel;
>> + const char *prefix;
>> + const char **cmd;
>> + struct sub
Stefan Beller writes:
> +struct submodule_args {
> + const char *name;
> + const char *path;
> + const char *sha1;
> + const char *toplevel;
> + const char *prefix;
> + const char **cmd;
> + struct submodule_output *out;
> + sem_t *mutex;
> +};
I do not see what s
This runs a command on each submodule in parallel and should eventually
replace `git submodule foreach`.
There is a new option -j/--jobs (inspired by make) to specify the number
of parallel threads.
The jobs=1 case needs to be special cases to exactly replicate the current
default behavior of `gi
3 matches
Mail list logo