diff options
author | Brandon Williams <bmwill@google.com> | 2017-08-03 20:19:57 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2017-08-03 22:11:01 +0200 |
commit | 1b796ace7b5566d7cd2ed2ee56d3e5b1f7605272 (patch) | |
tree | f42ceacf4c2ffd03a6beeb2513684a7efc936a77 /submodule.h | |
parent | submodule-config: remove support for overlaying repository config (diff) | |
download | git-1b796ace7b5566d7cd2ed2ee56d3e5b1f7605272.tar.xz git-1b796ace7b5566d7cd2ed2ee56d3e5b1f7605272.zip |
submodule-config: move submodule-config functions to submodule-config.c
Migrate the functions used to initialize the submodule-config to
submodule-config.c so that the callback routine used in the
initialization process can be static and prevent it from being used
outside of initializing the submodule-config through the main API.
Signed-off-by: Brandon Williams <bmwill@google.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'submodule.h')
-rw-r--r-- | submodule.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/submodule.h b/submodule.h index 4f70c49444..02195c24fc 100644 --- a/submodule.h +++ b/submodule.h @@ -47,8 +47,6 @@ int option_parse_recurse_submodules_worktree_updater(const struct option *opt, const char *arg, int unset); void load_submodule_cache(void); extern void gitmodules_config(void); -extern void repo_read_gitmodules(struct repository *repo); -extern void gitmodules_config_oid(const struct object_id *commit_oid); extern int is_submodule_active(struct repository *repo, const char *path); /* * Determine if a submodule has been populated at a given 'path' by checking if |