Skip tests that fail due to incomplete implementations, missing tools...
[git/mingw/j6t.git] / submodule-config.h
blobd9bbf9a81a7ff96637c582337d6ee3747fa84208
1 #ifndef SUBMODULE_CONFIG_CACHE_H
2 #define SUBMODULE_CONFIG_CACHE_H
4 #include "hashmap.h"
5 #include "strbuf.h"
7 /*
8 * Submodule entry containing the information about a certain submodule
9 * in a certain revision.
11 struct submodule {
12 const char *path;
13 const char *name;
14 const char *url;
15 int fetch_recurse;
16 const char *ignore;
17 const char *update;
18 /* the sha1 blob id of the responsible .gitmodules file */
19 unsigned char gitmodules_sha1[20];
22 int parse_fetch_recurse_submodules_arg(const char *opt, const char *arg);
23 int parse_submodule_config_option(const char *var, const char *value);
24 const struct submodule *submodule_from_name(const unsigned char *commit_sha1,
25 const char *name);
26 const struct submodule *submodule_from_path(const unsigned char *commit_sha1,
27 const char *path);
28 void submodule_free(void);
30 int config_parallel_submodules(void);
32 #endif /* SUBMODULE_CONFIG_H */