Merge branch 'nd/cache-tree-ita'
[git.git] / submodule-config.h
blobb1fdcc0c33326f556d23ce65ad21b01514fcb927
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 struct submodule_update_strategy update_strategy;
19 /* the sha1 blob id of the responsible .gitmodules file */
20 unsigned char gitmodules_sha1[20];
21 int recommend_shallow;
24 int parse_fetch_recurse_submodules_arg(const char *opt, const char *arg);
25 int parse_push_recurse_submodules_arg(const char *opt, const char *arg);
26 int parse_submodule_config_option(const char *var, const char *value);
27 const struct submodule *submodule_from_name(const unsigned char *commit_sha1,
28 const char *name);
29 const struct submodule *submodule_from_path(const unsigned char *commit_sha1,
30 const char *path);
31 void submodule_free(void);
33 #endif /* SUBMODULE_CONFIG_H */