2009-10-19 12:38:32 +00:00
|
|
|
#ifndef SUBMODULE_H
|
|
|
|
#define SUBMODULE_H
|
|
|
|
|
2010-06-25 14:56:47 +00:00
|
|
|
struct diff_options;
|
2012-09-01 15:27:06 +00:00
|
|
|
struct argv_array;
|
2010-06-25 14:56:47 +00:00
|
|
|
|
2011-03-06 22:10:46 +00:00
|
|
|
enum {
|
2015-11-17 11:05:56 +00:00
|
|
|
RECURSE_SUBMODULES_CHECK = -4,
|
2015-08-18 00:22:00 +00:00
|
|
|
RECURSE_SUBMODULES_ERROR = -3,
|
2015-08-18 00:21:57 +00:00
|
|
|
RECURSE_SUBMODULES_NONE = -2,
|
2011-03-06 22:10:46 +00:00
|
|
|
RECURSE_SUBMODULES_ON_DEMAND = -1,
|
|
|
|
RECURSE_SUBMODULES_OFF = 0,
|
|
|
|
RECURSE_SUBMODULES_DEFAULT = 1,
|
|
|
|
RECURSE_SUBMODULES_ON = 2
|
|
|
|
};
|
|
|
|
|
2013-07-30 19:50:34 +00:00
|
|
|
int is_staging_gitmodules_ok(void);
|
2013-08-06 19:15:11 +00:00
|
|
|
int update_path_in_gitmodules(const char *oldpath, const char *newpath);
|
2013-08-06 19:15:25 +00:00
|
|
|
int remove_path_from_gitmodules(const char *path);
|
2013-07-30 19:50:34 +00:00
|
|
|
void stage_updated_gitmodules(void);
|
2010-08-05 22:39:25 +00:00
|
|
|
void set_diffopt_flags_from_submodule_config(struct diff_options *diffopt,
|
|
|
|
const char *path);
|
2010-11-12 12:54:52 +00:00
|
|
|
int submodule_config(const char *var, const char *value, void *cb);
|
2012-04-10 19:10:26 +00:00
|
|
|
void gitmodules_config(void);
|
2010-06-25 14:56:47 +00:00
|
|
|
void handle_ignore_submodules_arg(struct diff_options *diffopt, const char *);
|
2009-10-19 12:38:32 +00:00
|
|
|
void show_submodule_summary(FILE *f, const char *path,
|
2013-04-05 16:12:08 +00:00
|
|
|
const char *line_prefix,
|
2009-10-19 12:38:32 +00:00
|
|
|
unsigned char one[20], unsigned char two[20],
|
2012-11-13 15:42:47 +00:00
|
|
|
unsigned dirty_submodule, const char *meta,
|
2009-10-19 12:38:32 +00:00
|
|
|
const char *del, const char *add, const char *reset);
|
2010-11-10 23:55:02 +00:00
|
|
|
void set_config_fetch_recurse_submodules(int value);
|
2011-03-06 22:10:46 +00:00
|
|
|
void check_for_new_submodule_commits(unsigned char new_sha1[20]);
|
2012-09-01 15:27:06 +00:00
|
|
|
int fetch_populated_submodules(const struct argv_array *options,
|
2011-03-06 22:11:21 +00:00
|
|
|
const char *prefix, int command_line_option,
|
2015-12-16 00:04:12 +00:00
|
|
|
int quiet, int max_parallel_jobs);
|
2010-03-13 22:00:27 +00:00
|
|
|
unsigned is_submodule_modified(const char *path, int ignore_untracked);
|
2012-09-26 18:21:13 +00:00
|
|
|
int submodule_uses_gitfile(const char *path);
|
|
|
|
int ok_to_remove_submodule(const char *path);
|
2010-07-07 13:39:13 +00:00
|
|
|
int merge_submodule(unsigned char result[20], const char *path, const unsigned char base[20],
|
2011-10-13 12:59:05 +00:00
|
|
|
const unsigned char a[20], const unsigned char b[20], int search);
|
2012-03-29 07:21:23 +00:00
|
|
|
int find_unpushed_submodules(unsigned char new_sha1[20], const char *remotes_name,
|
|
|
|
struct string_list *needs_pushing);
|
2012-03-29 07:21:24 +00:00
|
|
|
int push_unpushed_submodules(unsigned char new_sha1[20], const char *remotes_name);
|
2013-07-30 19:50:03 +00:00
|
|
|
void connect_work_tree_and_git_dir(const char *work_tree, const char *git_dir);
|
2009-10-19 12:38:32 +00:00
|
|
|
|
|
|
|
#endif
|