config: remove git_config_maybe_bool
[git.git] / submodule-config.h
blobcccd34b929f5299fbba6f43c74daeb96773aebdf
1 #ifndef SUBMODULE_CONFIG_CACHE_H
2 #define SUBMODULE_CONFIG_CACHE_H
4 #include "hashmap.h"
5 #include "submodule.h"
6 #include "strbuf.h"
8 /*
9 * Submodule entry containing the information about a certain submodule
10 * in a certain revision.
12 struct submodule {
13 const char *path;
14 const char *name;
15 const char *url;
16 int fetch_recurse;
17 const char *ignore;
18 const char *branch;
19 struct submodule_update_strategy update_strategy;
20 /* the sha1 blob id of the responsible .gitmodules file */
21 unsigned char gitmodules_sha1[20];
22 int recommend_shallow;
25 struct submodule_cache;
26 struct repository;
28 extern void submodule_cache_free(struct submodule_cache *cache);
30 extern int parse_submodule_fetchjobs(const char *var, const char *value);
31 extern int parse_fetch_recurse_submodules_arg(const char *opt, const char *arg);
32 struct option;
33 extern int option_fetch_parse_recurse_submodules(const struct option *opt,
34 const char *arg, int unset);
35 extern int parse_update_recurse_submodules_arg(const char *opt, const char *arg);
36 extern int parse_push_recurse_submodules_arg(const char *opt, const char *arg);
37 extern int parse_submodule_config_option(const char *var, const char *value);
38 extern int submodule_config_option(struct repository *repo,
39 const char *var, const char *value);
40 extern const struct submodule *submodule_from_name(
41 const struct object_id *commit_or_tree, const char *name);
42 extern const struct submodule *submodule_from_path(
43 const struct object_id *commit_or_tree, const char *path);
44 extern const struct submodule *submodule_from_cache(struct repository *repo,
45 const struct object_id *treeish_name,
46 const char *key);
47 extern int gitmodule_oid_from_commit(const struct object_id *commit_oid,
48 struct object_id *gitmodules_oid,
49 struct strbuf *rev);
50 extern void submodule_free(void);
52 #endif /* SUBMODULE_CONFIG_H */