1 #ifndef SUBMODULE_CONFIG_CACHE_H
2 #define SUBMODULE_CONFIG_CACHE_H
11 * Submodule entry containing the information about a certain submodule
12 * in a certain revision.
21 struct submodule_update_strategy update_strategy
;
22 /* the object id of the responsible .gitmodules file */
23 struct object_id gitmodules_oid
;
24 int recommend_shallow
;
27 #define SUBMODULE_INIT { NULL, NULL, NULL, RECURSE_SUBMODULES_NONE, \
28 NULL, NULL, SUBMODULE_UPDATE_STRATEGY_INIT, { { 0 } }, -1 };
30 struct submodule_cache
;
33 extern void submodule_cache_free(struct submodule_cache
*cache
);
35 extern int parse_submodule_fetchjobs(const char *var
, const char *value
);
36 extern int parse_fetch_recurse_submodules_arg(const char *opt
, const char *arg
);
38 extern int option_fetch_parse_recurse_submodules(const struct option
*opt
,
39 const char *arg
, int unset
);
40 extern int parse_update_recurse_submodules_arg(const char *opt
, const char *arg
);
41 extern int parse_push_recurse_submodules_arg(const char *opt
, const char *arg
);
42 extern void repo_read_gitmodules(struct repository
*repo
);
43 extern void gitmodules_config_oid(const struct object_id
*commit_oid
);
44 const struct submodule
*submodule_from_name(struct repository
*r
,
45 const struct object_id
*commit_or_tree
,
47 const struct submodule
*submodule_from_path(struct repository
*r
,
48 const struct object_id
*commit_or_tree
,
50 void submodule_free(struct repository
*r
);
51 int print_config_from_gitmodules(struct repository
*repo
, const char *key
);
52 int config_set_in_gitmodules_file_gently(const char *key
, const char *value
);
55 * Returns 0 if the name is syntactically acceptable as a submodule "name"
56 * (e.g., that may be found in the subsection of a .gitmodules file) and -1
59 int check_submodule_name(const char *name
);
62 * Note: these helper functions exist solely to maintain backward
63 * compatibility with 'fetch' and 'update_clone' storing configuration in
66 * New helpers to retrieve arbitrary configuration from the '.gitmodules' file
67 * should NOT be added.
69 extern void fetch_config_from_gitmodules(int *max_children
, int *recurse_submodules
);
70 extern void update_clone_config_from_gitmodules(int *max_jobs
);
72 #endif /* SUBMODULE_CONFIG_H */