Documentation / git-submodule.txton commit shortlog: support --pretty=format: option (b526f8e)
   1git-submodule(1)
   2================
   3
   4NAME
   5----
   6git-submodule - Initialize, update or inspect submodules
   7
   8
   9SYNOPSIS
  10--------
  11[verse]
  12'git submodule' [--quiet] add [-b branch] [--] <repository> <path>
  13'git submodule' [--quiet] status [--cached] [--] [<path>...]
  14'git submodule' [--quiet] init [--] [<path>...]
  15'git submodule' [--quiet] update [--init] [--] [<path>...]
  16'git submodule' [--quiet] summary [--summary-limit <n>] [commit] [--] [<path>...]
  17
  18
  19COMMANDS
  20--------
  21add::
  22        Add the given repository as a submodule at the given path
  23        to the changeset to be committed next to the current
  24        project: the current project is termed termed the "superproject".
  25+
  26This requires two arguments: <repository> and <path>.
  27+
  28<repository> is the URL of the new submodule's origin repository.
  29This may be either an absolute URL, or (if it begins with ./
  30or ../), the location relative to the superproject's origin
  31repository.
  32+
  33<path> is the relative location for the cloned submodule to
  34exist in the superproject. If <path> does not exist, then the
  35submodule is created by cloning from the named URL. If <path> does
  36exist and is already a valid git repository, then this is added
  37to the changeset without cloning. This second form is provided
  38to ease creating a new submodule from scratch, and presumes
  39the user will later push the submodule to the given URL.
  40+
  41In either case, the given URL is recorded into .gitmodules for
  42use by subsequent users cloning the superproject. If the URL is
  43given relative to the superproject's repository, the presumption
  44is the superproject and submodule repositories will be kept
  45together in the same relative location, and only the
  46superproject's URL need be provided: git-submodule will correctly
  47locate the submodule using the relative URL in .gitmodules.
  48
  49status::
  50        Show the status of the submodules. This will print the SHA-1 of the
  51        currently checked out commit for each submodule, along with the
  52        submodule path and the output of 'git-describe' for the
  53        SHA-1. Each SHA-1 will be prefixed with `-` if the submodule is not
  54        initialized and `+` if the currently checked out submodule commit
  55        does not match the SHA-1 found in the index of the containing
  56        repository. This command is the default command for 'git-submodule'.
  57
  58init::
  59        Initialize the submodules, i.e. register in .git/config each submodule
  60        name and url found in .gitmodules. The key used in .git/config is
  61        `submodule.$name.url`. This command does not alter existing information
  62        in .git/config.
  63
  64update::
  65        Update the registered submodules, i.e. clone missing submodules and
  66        checkout the commit specified in the index of the containing repository.
  67        This will make the submodules HEAD be detached.
  68+
  69If the submodule is not yet initialized, and you just want to use the
  70setting as stored in .gitmodules, you can automatically initialize the
  71submodule with the --init option.
  72
  73summary::
  74        Show commit summary between the given commit (defaults to HEAD) and
  75        working tree/index. For a submodule in question, a series of commits
  76        in the submodule between the given super project commit and the
  77        index or working tree (switched by --cached) are shown.
  78
  79OPTIONS
  80-------
  81-q::
  82--quiet::
  83        Only print error messages.
  84
  85-b::
  86--branch::
  87        Branch of repository to add as submodule.
  88
  89--cached::
  90        This option is only valid for status and summary commands.  These
  91        commands typically use the commit found in the submodule HEAD, but
  92        with this option, the commit stored in the index is used instead.
  93
  94-n::
  95--summary-limit::
  96        This option is only valid for the summary command.
  97        Limit the summary size (number of commits shown in total).
  98        Giving 0 will disable the summary; a negative number means unlimited
  99        (the default). This limit only applies to modified submodules. The
 100        size is always limited to 1 for added/deleted/typechanged submodules.
 101
 102<path>::
 103        Path to submodule(s). When specified this will restrict the command
 104        to only operate on the submodules found at the specified paths.
 105        (This argument is required with add).
 106
 107FILES
 108-----
 109When initializing submodules, a .gitmodules file in the top-level directory
 110of the containing repository is used to find the url of each submodule.
 111This file should be formatted in the same way as `$GIT_DIR/config`. The key
 112to each submodule url is "submodule.$name.url".  See linkgit:gitmodules[5]
 113for details.
 114
 115
 116AUTHOR
 117------
 118Written by Lars Hjemli <hjemli@gmail.com>
 119
 120GIT
 121---
 122Part of the linkgit:git[1] suite