]> git.ipfire.org Git - thirdparty/git.git/blame - submodule-config.h
is_ntfs_dotgit(): only verify the leading segment
[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"
ea2fa5a3 5#include "submodule.h"
959b5455
HV
6#include "strbuf.h"
7
8/*
9 * Submodule entry containing the information about a certain submodule
10 * in a certain revision.
11 */
12struct submodule {
13 const char *path;
14 const char *name;
15 const char *url;
16 int fetch_recurse;
17 const char *ignore;
b5944f34 18 const char *branch;
ea2fa5a3 19 struct submodule_update_strategy update_strategy;
959b5455
HV
20 /* the sha1 blob id of the responsible .gitmodules file */
21 unsigned char gitmodules_sha1[20];
37f52e93 22 int recommend_shallow;
959b5455
HV
23};
24
bf12fcdf
BW
25struct submodule_cache;
26struct repository;
27
28extern void submodule_cache_free(struct submodule_cache *cache);
29
d601fd09 30extern int parse_fetch_recurse_submodules_arg(const char *opt, const char *arg);
886dc154
SB
31struct option;
32extern int option_fetch_parse_recurse_submodules(const struct option *opt,
33 const char *arg, int unset);
d601fd09
SB
34extern int parse_update_recurse_submodules_arg(const char *opt, const char *arg);
35extern int parse_push_recurse_submodules_arg(const char *opt, const char *arg);
36extern int parse_submodule_config_option(const char *var, const char *value);
bf12fcdf
BW
37extern int submodule_config_option(struct repository *repo,
38 const char *var, const char *value);
d601fd09
SB
39extern const struct submodule *submodule_from_name(
40 const unsigned char *commit_or_tree, const char *name);
41extern const struct submodule *submodule_from_path(
42 const unsigned char *commit_or_tree, const char *path);
bf12fcdf
BW
43extern const struct submodule *submodule_from_cache(struct repository *repo,
44 const unsigned char *treeish_name,
45 const char *key);
9ebf689a
BW
46extern int gitmodule_sha1_from_commit(const unsigned char *commit_sha1,
47 unsigned char *gitmodules_sha1,
48 struct strbuf *rev);
d601fd09 49extern void submodule_free(void);
959b5455 50
0383bbb9
JK
51/*
52 * Returns 0 if the name is syntactically acceptable as a submodule "name"
53 * (e.g., that may be found in the subsection of a .gitmodules file) and -1
54 * otherwise.
55 */
56int check_submodule_name(const char *name);
57
959b5455 58#endif /* SUBMODULE_CONFIG_H */