Skip to content

Commit

Permalink
builtin/submodule--helper: factor out method to update a single submo…
Browse files Browse the repository at this point in the history
…dule

In a later patch we'll find this method handy.

Signed-off-by: Stefan Beller <sbeller@google.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
  • Loading branch information
stefanbeller authored and gitster committed Aug 3, 2018
1 parent f1d1571 commit c94d9dc
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions builtin/submodule--helper.c
Original file line number Diff line number Diff line change
Expand Up @@ -1727,10 +1727,17 @@ static int git_update_clone_config(const char *var, const char *value,
return 0;
}

static void update_submodule(struct update_clone_data *ucd)
{
fprintf(stdout, "dummy %s %d\t%s\n",
oid_to_hex(&ucd->oid),
ucd->just_cloned,
ucd->sub->path);
}

static int update_submodules(struct submodule_update_clone *suc)
{
int i;
struct strbuf sb = STRBUF_INIT;

run_processes_parallel(suc->max_jobs,
update_clone_get_next_task,
Expand All @@ -1749,16 +1756,9 @@ static int update_submodules(struct submodule_update_clone *suc)
if (suc->quickstop)
return 1;

for (i = 0; i < suc->update_clone_nr; i++) {
strbuf_addf(&sb, "dummy %s %d\t%s\n",
oid_to_hex(&suc->update_clone[i].oid),
suc->update_clone[i].just_cloned,
suc->update_clone[i].sub->path);
fprintf(stdout, "%s", sb.buf);
strbuf_reset(&sb);
}
for (i = 0; i < suc->update_clone_nr; i++)
update_submodule(&suc->update_clone[i]);

strbuf_release(&sb);
return 0;
}

Expand Down

0 comments on commit c94d9dc

Please sign in to comment.