Documentation / technical / api-submodule-config.txton commit Merge branch 'lc/shell-default-value-noexpand' into maint (5220b75)
   1submodule config cache API
   2==========================
   3
   4The submodule config cache API allows to read submodule
   5configurations/information from specified revisions. Internally
   6information is lazily read into a cache that is used to avoid
   7unnecessary parsing of the same .gitmodule files. Lookups can be done by
   8submodule path or name.
   9
  10Usage
  11-----
  12
  13To initialize the cache with configurations from the worktree the caller
  14typically first calls `gitmodules_config()` to read values from the
  15worktree .gitmodules and then to overlay the local git config values
  16`parse_submodule_config_option()` from the config parsing
  17infrastructure.
  18
  19The caller can look up information about submodules by using the
  20`submodule_from_path()` or `submodule_from_name()` functions. They return
  21a `struct submodule` which contains the values. The API automatically
  22initializes and allocates the needed infrastructure on-demand. If the
  23caller does only want to lookup values from revisions the initialization
  24can be skipped.
  25
  26If the internal cache might grow too big or when the caller is done with
  27the API, all internally cached values can be freed with submodule_free().
  28
  29Data Structures
  30---------------
  31
  32`struct submodule`::
  33
  34        This structure is used to return the information about one
  35        submodule for a certain revision. It is returned by the lookup
  36        functions.
  37
  38Functions
  39---------
  40
  41`void submodule_free()`::
  42
  43        Use these to free the internally cached values.
  44
  45`int parse_submodule_config_option(const char *var, const char *value)`::
  46
  47        Can be passed to the config parsing infrastructure to parse
  48        local (worktree) submodule configurations.
  49
  50`const struct submodule *submodule_from_path(const unsigned char *commit_sha1, const char *path)`::
  51
  52        Lookup values for one submodule by its commit_sha1 and path.
  53
  54`const struct submodule *submodule_from_name(const unsigned char *commit_sha1, const char *name)`::
  55
  56        The same as above but lookup by name.
  57
  58If given the null_sha1 as commit_sha1 the local configuration of a
  59submodule will be returned (e.g. consolidated values from local git
  60configuration and the .gitmodules file in the worktree).
  61
  62For an example usage see test-submodule-config.c.