]> git.ipfire.org Git - thirdparty/git.git/blame - submodule-config.h
submodule: implement a config API for lookup of .gitmodules values
[thirdparty/git.git] / submodule-config.h
CommitLineData
959b5455
HV
1#ifndef SUBMODULE_CONFIG_CACHE_H
2#define SUBMODULE_CONFIG_CACHE_H
3
4#include "hashmap.h"
5#include "strbuf.h"
6
7/*
8 * Submodule entry containing the information about a certain submodule
9 * in a certain revision.
10 */
11struct submodule {
12 const char *path;
13 const char *name;
14 const char *url;
15 int fetch_recurse;
16 const char *ignore;
17 /* the sha1 blob id of the responsible .gitmodules file */
18 unsigned char gitmodules_sha1[20];
19};
20
21const struct submodule *submodule_from_name(const unsigned char *commit_sha1,
22 const char *name);
23const struct submodule *submodule_from_path(const unsigned char *commit_sha1,
24 const char *path);
25void submodule_free(void);
26
27#endif /* SUBMODULE_CONFIG_H */