1 | #ifndef SUBMODULE_H
|
---|
2 | #define SUBMODULE_H
|
---|
3 |
|
---|
4 | struct diff_options;
|
---|
5 | struct argv_array;
|
---|
6 |
|
---|
7 | enum {
|
---|
8 | RECURSE_SUBMODULES_ON_DEMAND = -1,
|
---|
9 | RECURSE_SUBMODULES_OFF = 0,
|
---|
10 | RECURSE_SUBMODULES_DEFAULT = 1,
|
---|
11 | RECURSE_SUBMODULES_ON = 2
|
---|
12 | };
|
---|
13 |
|
---|
14 | int is_staging_gitmodules_ok(void);
|
---|
15 | int update_path_in_gitmodules(const char *oldpath, const char *newpath);
|
---|
16 | int remove_path_from_gitmodules(const char *path);
|
---|
17 | void stage_updated_gitmodules(void);
|
---|
18 | void set_diffopt_flags_from_submodule_config(struct diff_options *diffopt,
|
---|
19 | const char *path);
|
---|
20 | int submodule_config(const char *var, const char *value, void *cb);
|
---|
21 | void gitmodules_config(void);
|
---|
22 | int parse_submodule_config_option(const char *var, const char *value);
|
---|
23 | void handle_ignore_submodules_arg(struct diff_options *diffopt, const char *);
|
---|
24 | int parse_fetch_recurse_submodules_arg(const char *opt, const char *arg);
|
---|
25 | void show_submodule_summary(FILE *f, const char *path,
|
---|
26 | const char *line_prefix,
|
---|
27 | unsigned char one[20], unsigned char two[20],
|
---|
28 | unsigned dirty_submodule, const char *meta,
|
---|
29 | const char *del, const char *add, const char *reset);
|
---|
30 | void set_config_fetch_recurse_submodules(int value);
|
---|
31 | void check_for_new_submodule_commits(unsigned char new_sha1[20]);
|
---|
32 | int fetch_populated_submodules(const struct argv_array *options,
|
---|
33 | const char *prefix, int command_line_option,
|
---|
34 | int quiet);
|
---|
35 | unsigned is_submodule_modified(const char *path, int ignore_untracked);
|
---|
36 | int submodule_uses_gitfile(const char *path);
|
---|
37 | int ok_to_remove_submodule(const char *path);
|
---|
38 | int merge_submodule(unsigned char result[20], const char *path, const unsigned char base[20],
|
---|
39 | const unsigned char a[20], const unsigned char b[20], int search);
|
---|
40 | int find_unpushed_submodules(unsigned char new_sha1[20], const char *remotes_name,
|
---|
41 | struct string_list *needs_pushing);
|
---|
42 | int push_unpushed_submodules(unsigned char new_sha1[20], const char *remotes_name);
|
---|
43 | void connect_work_tree_and_git_dir(const char *work_tree, const char *git_dir);
|
---|
44 |
|
---|
45 | #endif
|
---|