8 RECURSE_SUBMODULES_CHECK
= -4,
9 RECURSE_SUBMODULES_ERROR
= -3,
10 RECURSE_SUBMODULES_NONE
= -2,
11 RECURSE_SUBMODULES_ON_DEMAND
= -1,
12 RECURSE_SUBMODULES_OFF
= 0,
13 RECURSE_SUBMODULES_DEFAULT
= 1,
14 RECURSE_SUBMODULES_ON
= 2
17 enum submodule_update_type
{
18 SM_UPDATE_UNSPECIFIED
= 0,
26 struct submodule_update_strategy
{
27 enum submodule_update_type type
;
30 #define SUBMODULE_UPDATE_STRATEGY_INIT {SM_UPDATE_UNSPECIFIED, NULL}
32 extern int is_staging_gitmodules_ok(void);
33 extern int update_path_in_gitmodules(const char *oldpath
, const char *newpath
);
34 extern int remove_path_from_gitmodules(const char *path
);
35 extern void stage_updated_gitmodules(void);
36 extern void set_diffopt_flags_from_submodule_config(struct diff_options
*,
38 extern int submodule_config(const char *var
, const char *value
, void *cb
);
39 extern void gitmodules_config(void);
40 extern int parse_submodule_update_strategy(const char *value
,
41 struct submodule_update_strategy
*dst
);
42 extern const char *submodule_strategy_to_string(const struct submodule_update_strategy
*s
);
43 extern void handle_ignore_submodules_arg(struct diff_options
*, const char *);
44 extern void show_submodule_summary(FILE *f
, const char *path
,
45 const char *line_prefix
,
46 struct object_id
*one
, struct object_id
*two
,
47 unsigned dirty_submodule
, const char *meta
,
48 const char *del
, const char *add
, const char *reset
);
49 extern void show_submodule_inline_diff(FILE *f
, const char *path
,
50 const char *line_prefix
,
51 struct object_id
*one
, struct object_id
*two
,
52 unsigned dirty_submodule
, const char *meta
,
53 const char *del
, const char *add
, const char *reset
,
54 const struct diff_options
*opt
);
55 extern void set_config_fetch_recurse_submodules(int value
);
56 extern void check_for_new_submodule_commits(unsigned char new_sha1
[20]);
57 extern int fetch_populated_submodules(const struct argv_array
*options
,
58 const char *prefix
, int command_line_option
,
59 int quiet
, int max_parallel_jobs
);
60 extern unsigned is_submodule_modified(const char *path
, int ignore_untracked
);
61 extern int submodule_uses_gitfile(const char *path
);
63 #define SUBMODULE_REMOVAL_DIE_ON_ERROR (1<<0)
64 #define SUBMODULE_REMOVAL_IGNORE_UNTRACKED (1<<1)
65 #define SUBMODULE_REMOVAL_IGNORE_IGNORED_UNTRACKED (1<<2)
66 extern int bad_to_remove_submodule(const char *path
, unsigned flags
);
67 extern int merge_submodule(unsigned char result
[20], const char *path
,
68 const unsigned char base
[20],
69 const unsigned char a
[20],
70 const unsigned char b
[20], int search
);
71 extern int find_unpushed_submodules(unsigned char new_sha1
[20],
72 const char *remotes_name
,
73 struct string_list
*needs_pushing
);
74 extern int push_unpushed_submodules(unsigned char new_sha1
[20],
75 const char *remotes_name
);
76 extern void connect_work_tree_and_git_dir(const char *work_tree
, const char *git_dir
);
77 extern int parallel_submodules(void);
80 * Prepare the "env_array" parameter of a "struct child_process" for executing
81 * a submodule by clearing any repo-specific envirionment variables, but
82 * retaining any config in the environment.
84 extern void prepare_submodule_repo_env(struct argv_array
*out
);
86 #define ABSORB_GITDIR_RECURSE_SUBMODULES (1<<0)
87 extern void absorb_git_dir_into_superproject(const char *prefix
,