mirror of
https://git.proxmox.com/git/libgit2
synced 2025-05-06 12:49:25 +00:00
Default value for fetchRecurseSubmodules should be yes
This commit is contained in:
parent
fccadba252
commit
217fee9ae6
@ -990,6 +990,7 @@ static git_submodule *submodule_alloc(git_repository *repo, const char *name)
|
||||
GIT_REFCOUNT_INC(sm);
|
||||
sm->ignore = sm->ignore_default = GIT_SUBMODULE_IGNORE_NONE;
|
||||
sm->update = sm->update_default = GIT_SUBMODULE_UPDATE_CHECKOUT;
|
||||
sm->fetch_recurse = sm->update_default = GIT_SUBMODULE_RECURSE_YES;
|
||||
sm->repo = repo;
|
||||
|
||||
return sm;
|
||||
|
Loading…
Reference in New Issue
Block a user