]> git.ipfire.org Git - thirdparty/git.git/blame - submodule-config.h
Merge branch '2.16' of https://github.com/ChrisADR/git-po
[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
c68f8375
HV
25#define SUBMODULE_INIT { NULL, NULL, NULL, RECURSE_SUBMODULES_NONE, \
26 NULL, NULL, SUBMODULE_UPDATE_STRATEGY_INIT, {0}, -1 };
27
bf12fcdf
BW
28struct submodule_cache;
29struct repository;
30
31extern void submodule_cache_free(struct submodule_cache *cache);
32
f20e7c1e 33extern int parse_submodule_fetchjobs(const char *var, const char *value);
d601fd09 34extern int parse_fetch_recurse_submodules_arg(const char *opt, const char *arg);
886dc154
SB
35struct option;
36extern int option_fetch_parse_recurse_submodules(const struct option *opt,
37 const char *arg, int unset);
d601fd09
SB
38extern int parse_update_recurse_submodules_arg(const char *opt, const char *arg);
39extern int parse_push_recurse_submodules_arg(const char *opt, const char *arg);
1b796ace
BW
40extern void repo_read_gitmodules(struct repository *repo);
41extern void gitmodules_config_oid(const struct object_id *commit_oid);
d601fd09 42extern const struct submodule *submodule_from_name(
cd73de47 43 const struct object_id *commit_or_tree, const char *name);
d601fd09 44extern const struct submodule *submodule_from_path(
cd73de47 45 const struct object_id *commit_or_tree, const char *path);
bf12fcdf 46extern const struct submodule *submodule_from_cache(struct repository *repo,
cd73de47 47 const struct object_id *treeish_name,
bf12fcdf 48 const char *key);
d601fd09 49extern void submodule_free(void);
959b5455
HV
50
51#endif /* SUBMODULE_CONFIG_H */