submodule.hon commit submodule--helper: move config-sanitizing to submodule.c (4638728)
   1#ifndef SUBMODULE_H
   2#define SUBMODULE_H
   3
   4struct diff_options;
   5struct argv_array;
   6
   7enum {
   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
  15};
  16
  17int is_staging_gitmodules_ok(void);
  18int update_path_in_gitmodules(const char *oldpath, const char *newpath);
  19int remove_path_from_gitmodules(const char *path);
  20void stage_updated_gitmodules(void);
  21void set_diffopt_flags_from_submodule_config(struct diff_options *diffopt,
  22                const char *path);
  23int submodule_config(const char *var, const char *value, void *cb);
  24void gitmodules_config(void);
  25void handle_ignore_submodules_arg(struct diff_options *diffopt, const char *);
  26void show_submodule_summary(FILE *f, const char *path,
  27                const char *line_prefix,
  28                unsigned char one[20], unsigned char two[20],
  29                unsigned dirty_submodule, const char *meta,
  30                const char *del, const char *add, const char *reset);
  31void set_config_fetch_recurse_submodules(int value);
  32void check_for_new_submodule_commits(unsigned char new_sha1[20]);
  33int fetch_populated_submodules(const struct argv_array *options,
  34                               const char *prefix, int command_line_option,
  35                               int quiet, int max_parallel_jobs);
  36unsigned is_submodule_modified(const char *path, int ignore_untracked);
  37int submodule_uses_gitfile(const char *path);
  38int ok_to_remove_submodule(const char *path);
  39int merge_submodule(unsigned char result[20], const char *path, const unsigned char base[20],
  40                    const unsigned char a[20], const unsigned char b[20], int search);
  41int find_unpushed_submodules(unsigned char new_sha1[20], const char *remotes_name,
  42                struct string_list *needs_pushing);
  43int push_unpushed_submodules(unsigned char new_sha1[20], const char *remotes_name);
  44void connect_work_tree_and_git_dir(const char *work_tree, const char *git_dir);
  45
  46/*
  47 * This function is intended as a callback for use with
  48 * git_config_from_parameters(). It ignores any config options which
  49 * are not suitable for passing along to a submodule, and accumulates the rest
  50 * in "data", which must be a pointer to a strbuf. The end result can
  51 * be put into $GIT_CONFIG_PARAMETERS for passing to a sub-process.
  52 */
  53int sanitize_submodule_config(const char *var, const char *value, void *data);
  54
  55/*
  56 * Prepare the "env_array" parameter of a "struct child_process" for executing
  57 * a submodule by clearing any repo-specific envirionment variables, but
  58 * retaining any config approved by sanitize_submodule_config().
  59 */
  60void prepare_submodule_repo_env(struct argv_array *out);
  61
  62#endif