unpack-trees: oneway_merge to update submodules
When there is a one way merge, each submodule needs to be one way merged as well, if we're asked to recurse into submodules. In case of a submodule, check if it is up-to-date, otherwise set the flag CE_UPDATE, which will trigger an update of it in the phase updating the tree later. Signed-off-by: Stefan Beller <sbeller@google.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
parent
63d963a470
commit
ad17312e11
@ -2139,6 +2139,9 @@ int oneway_merge(const struct cache_entry * const *src,
|
||||
ie_match_stat(o->src_index, old, &st, CE_MATCH_IGNORE_VALID|CE_MATCH_IGNORE_SKIP_WORKTREE))
|
||||
update |= CE_UPDATE;
|
||||
}
|
||||
if (o->update && S_ISGITLINK(old->ce_mode) &&
|
||||
should_update_submodules() && !verify_uptodate(old, o))
|
||||
update |= CE_UPDATE;
|
||||
add_entry(o, old, update, 0);
|
||||
return 0;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user