Junio C Hamano | 38b693c | 2007-06-03 08:40:14 | [diff] [blame] | 1 | git-submodule(1) |
| 2 | ================ |
| 3 | |
| 4 | NAME |
| 5 | ---- |
| 6 | git-submodule - Initialize, update or inspect submodules |
| 7 | |
| 8 | |
| 9 | SYNOPSIS |
| 10 | -------- |
Junio C Hamano | 7a4a283 | 2007-07-07 21:53:22 | [diff] [blame] | 11 | [verse] |
Junio C Hamano | 11f1537 | 2019-03-07 03:17:00 | [diff] [blame] | 12 | 'git submodule' [--quiet] [--cached] |
Junio C Hamano | e89102f | 2017-02-15 23:18:15 | [diff] [blame] | 13 | 'git submodule' [--quiet] add [<options>] [--] <repository> [<path>] |
Junio C Hamano | 0e066b9 | 2009-08-28 01:08:41 | [diff] [blame] | 14 | 'git submodule' [--quiet] status [--cached] [--recursive] [--] [<path>...] |
Junio C Hamano | fce7c7e | 2008-07-02 03:06:38 | [diff] [blame] | 15 | 'git submodule' [--quiet] init [--] [<path>...] |
Junio C Hamano | 198b1f1 | 2016-05-17 22:27:24 | [diff] [blame] | 16 | 'git submodule' [--quiet] deinit [-f|--force] (--all|[--] <path>...) |
Junio C Hamano | e89102f | 2017-02-15 23:18:15 | [diff] [blame] | 17 | 'git submodule' [--quiet] update [<options>] [--] [<path>...] |
Junio C Hamano | 2ba1471 | 2019-04-25 10:12:27 | [diff] [blame] | 18 | 'git submodule' [--quiet] set-branch [<options>] [--] <path> |
Junio C Hamano | b489685 | 2019-12-10 23:15:09 | [diff] [blame] | 19 | 'git submodule' [--quiet] set-url [--] <path> <newurl> |
Junio C Hamano | e89102f | 2017-02-15 23:18:15 | [diff] [blame] | 20 | 'git submodule' [--quiet] summary [<options>] [--] [<path>...] |
Junio C Hamano | 0e066b9 | 2009-08-28 01:08:41 | [diff] [blame] | 21 | 'git submodule' [--quiet] foreach [--recursive] <command> |
Junio C Hamano | 38d0253 | 2014-06-26 21:48:50 | [diff] [blame] | 22 | 'git submodule' [--quiet] sync [--recursive] [--] [<path>...] |
Junio C Hamano | 56ace3d | 2017-01-10 23:43:41 | [diff] [blame] | 23 | 'git submodule' [--quiet] absorbgitdirs [--] [<path>...] |
Junio C Hamano | 38b693c | 2007-06-03 08:40:14 | [diff] [blame] | 24 | |
| 25 | |
Junio C Hamano | f69a0a0 | 2008-07-17 08:08:47 | [diff] [blame] | 26 | DESCRIPTION |
| 27 | ----------- |
Junio C Hamano | 8c5d594 | 2015-06-11 19:37:48 | [diff] [blame] | 28 | Inspects, updates and manages submodules. |
Junio C Hamano | f69a0a0 | 2008-07-17 08:08:47 | [diff] [blame] | 29 | |
Junio C Hamano | 387ce23 | 2017-07-12 23:01:13 | [diff] [blame] | 30 | For more information about submodules, see linkgit:gitsubmodules[7]. |
Junio C Hamano | f69a0a0 | 2008-07-17 08:08:47 | [diff] [blame] | 31 | |
Junio C Hamano | 38b693c | 2007-06-03 08:40:14 | [diff] [blame] | 32 | COMMANDS |
| 33 | -------- |
Junio C Hamano | 11f1537 | 2019-03-07 03:17:00 | [diff] [blame] | 34 | With no arguments, shows the status of existing submodules. Several |
| 35 | subcommands are available to perform operations on the submodules. |
| 36 | |
Junio C Hamano | cd639fa | 2024-08-16 17:29:58 | [diff] [blame^] | 37 | add [-b <branch>] [-f|--force] [--name <name>] [--reference <repository>] [--ref-format <format>] [--depth <depth>] [--] <repository> [<path>]:: |
Junio C Hamano | 1d90cb0 | 2007-07-03 07:05:31 | [diff] [blame] | 38 | Add the given repository as a submodule at the given path |
Junio C Hamano | 38ddcce | 2008-07-15 15:49:03 | [diff] [blame] | 39 | to the changeset to be committed next to the current |
Junio C Hamano | 85c7157 | 2008-07-28 00:03:31 | [diff] [blame] | 40 | project: the current project is termed the "superproject". |
Junio C Hamano | 38ddcce | 2008-07-15 15:49:03 | [diff] [blame] | 41 | + |
Junio C Hamano | 38ddcce | 2008-07-15 15:49:03 | [diff] [blame] | 42 | <repository> is the URL of the new submodule's origin repository. |
| 43 | This may be either an absolute URL, or (if it begins with ./ |
Junio C Hamano | 53eec4d | 2017-03-10 23:02:36 | [diff] [blame] | 44 | or ../), the location relative to the superproject's default remote |
Junio C Hamano | db472bc | 2012-01-04 00:22:37 | [diff] [blame] | 45 | repository (Please note that to specify a repository 'foo.git' |
| 46 | which is located right next to a superproject 'bar.git', you'll |
Junio C Hamano | b551377 | 2019-04-22 03:38:39 | [diff] [blame] | 47 | have to use `../foo.git` instead of `./foo.git` - as one might expect |
Junio C Hamano | db472bc | 2012-01-04 00:22:37 | [diff] [blame] | 48 | when following the rules for relative URLs - because the evaluation |
| 49 | of relative URLs in Git is identical to that of relative directories). |
Junio C Hamano | 53eec4d | 2017-03-10 23:02:36 | [diff] [blame] | 50 | + |
Junio C Hamano | 14e6683 | 2018-06-18 18:32:19 | [diff] [blame] | 51 | The default remote is the remote of the remote-tracking branch |
| 52 | of the current branch. If no such remote-tracking branch exists or |
Junio C Hamano | 53eec4d | 2017-03-10 23:02:36 | [diff] [blame] | 53 | the HEAD is detached, "origin" is assumed to be the default remote. |
| 54 | If the superproject doesn't have a default remote configured |
Junio C Hamano | 15567bc | 2011-07-23 00:51:59 | [diff] [blame] | 55 | the superproject is its own authoritative upstream and the current |
| 56 | working directory is used instead. |
Junio C Hamano | 38ddcce | 2008-07-15 15:49:03 | [diff] [blame] | 57 | + |
Junio C Hamano | 967cda7 | 2017-06-30 21:49:53 | [diff] [blame] | 58 | The optional argument <path> is the relative location for the cloned |
| 59 | submodule to exist in the superproject. If <path> is not given, the |
| 60 | canonical part of the source repository is used ("repo" for |
| 61 | "/path/to/repo.git" and "foo" for "host.xz:foo/.git"). If <path> |
| 62 | exists and is already a valid Git repository, then it is staged |
| 63 | for commit without cloning. The <path> is also used as the submodule's |
| 64 | logical name in its configuration entries unless `--name` is used |
| 65 | to specify a logical name. |
Junio C Hamano | 38ddcce | 2008-07-15 15:49:03 | [diff] [blame] | 66 | + |
Junio C Hamano | 967cda7 | 2017-06-30 21:49:53 | [diff] [blame] | 67 | The given URL is recorded into `.gitmodules` for use by subsequent users |
| 68 | cloning the superproject. If the URL is given relative to the |
| 69 | superproject's repository, the presumption is the superproject and |
| 70 | submodule repositories will be kept together in the same relative |
| 71 | location, and only the superproject's URL needs to be provided. |
| 72 | git-submodule will correctly locate the submodule using the relative |
| 73 | URL in `.gitmodules`. |
Junio C Hamano | cd639fa | 2024-08-16 17:29:58 | [diff] [blame^] | 74 | + |
| 75 | If `--ref-format <format>` is specified, the ref storage format of newly |
| 76 | cloned submodules will be set accordingly. |
Junio C Hamano | 1d90cb0 | 2007-07-03 07:05:31 | [diff] [blame] | 77 | |
Junio C Hamano | e89102f | 2017-02-15 23:18:15 | [diff] [blame] | 78 | status [--cached] [--recursive] [--] [<path>...]:: |
Junio C Hamano | 38b693c | 2007-06-03 08:40:14 | [diff] [blame] | 79 | Show the status of the submodules. This will print the SHA-1 of the |
| 80 | currently checked out commit for each submodule, along with the |
Junio C Hamano | 1aa40d2 | 2010-01-21 17:46:43 | [diff] [blame] | 81 | submodule path and the output of 'git describe' for the |
Junio C Hamano | 640779d | 2018-02-14 01:29:14 | [diff] [blame] | 82 | SHA-1. Each SHA-1 will possibly be prefixed with `-` if the submodule is |
| 83 | not initialized, `+` if the currently checked out submodule commit |
Junio C Hamano | 38b693c | 2007-06-03 08:40:14 | [diff] [blame] | 84 | does not match the SHA-1 found in the index of the containing |
Junio C Hamano | 5cd1518 | 2011-04-05 00:21:10 | [diff] [blame] | 85 | repository and `U` if the submodule has merge conflicts. |
Junio C Hamano | 0e066b9 | 2009-08-28 01:08:41 | [diff] [blame] | 86 | + |
Junio C Hamano | b3f862c | 2019-12-05 22:22:00 | [diff] [blame] | 87 | If `--cached` is specified, this command will instead print the SHA-1 |
| 88 | recorded in the superproject for each submodule. |
| 89 | + |
Junio C Hamano | e1296e9 | 2011-08-08 22:58:15 | [diff] [blame] | 90 | If `--recursive` is specified, this command will recurse into nested |
Junio C Hamano | 0e066b9 | 2009-08-28 01:08:41 | [diff] [blame] | 91 | submodules, and show their status as well. |
Junio C Hamano | e1296e9 | 2011-08-08 22:58:15 | [diff] [blame] | 92 | + |
| 93 | If you are only interested in changes of the currently initialized |
| 94 | submodules with respect to the commit recorded in the index or the HEAD, |
| 95 | linkgit:git-status[1] and linkgit:git-diff[1] will provide that information |
| 96 | too (and can also report changes to a submodule's work tree). |
Junio C Hamano | 38b693c | 2007-06-03 08:40:14 | [diff] [blame] | 97 | |
Junio C Hamano | e89102f | 2017-02-15 23:18:15 | [diff] [blame] | 98 | init [--] [<path>...]:: |
Junio C Hamano | 3d1b5a1 | 2013-05-17 23:34:02 | [diff] [blame] | 99 | Initialize the submodules recorded in the index (which were |
Junio C Hamano | 53eec4d | 2017-03-10 23:02:36 | [diff] [blame] | 100 | added and committed elsewhere) by setting `submodule.$name.url` |
Junio C Hamano | 62908fd | 2023-08-04 19:05:22 | [diff] [blame] | 101 | in `.git/config`, using the same setting from `.gitmodules` as |
Junio C Hamano | 53eec4d | 2017-03-10 23:02:36 | [diff] [blame] | 102 | a template. If the URL is relative, it will be resolved using |
| 103 | the default remote. If there is no default remote, the current |
| 104 | repository will be assumed to be upstream. |
| 105 | + |
| 106 | Optional <path> arguments limit which submodules will be initialized. |
Junio C Hamano | dc8d0c3 | 2017-03-30 23:00:21 | [diff] [blame] | 107 | If no path is specified and submodule.active has been configured, submodules |
| 108 | configured to be active will be initialized, otherwise all submodules are |
| 109 | initialized. |
Junio C Hamano | 53eec4d | 2017-03-10 23:02:36 | [diff] [blame] | 110 | + |
Junio C Hamano | 62908fd | 2023-08-04 19:05:22 | [diff] [blame] | 111 | It will also copy the value of `submodule.$name.update`, if present in |
| 112 | the `.gitmodules` file, to `.git/config`, but (1) this command does not |
| 113 | alter existing information in `.git/config`, and (2) `submodule.$name.update` |
| 114 | that is set to a custom command is *not* copied for security reasons. |
| 115 | + |
| 116 | You can then customize the submodule clone URLs in `.git/config` |
Junio C Hamano | 53eec4d | 2017-03-10 23:02:36 | [diff] [blame] | 117 | for your local setup and proceed to `git submodule update`; |
| 118 | you can also just use `git submodule update --init` without |
| 119 | the explicit 'init' step if you do not intend to customize |
| 120 | any submodule locations. |
| 121 | + |
Junio C Hamano | 967cda7 | 2017-06-30 21:49:53 | [diff] [blame] | 122 | See the add subcommand for the definition of default remote. |
Junio C Hamano | 38b693c | 2007-06-03 08:40:14 | [diff] [blame] | 123 | |
Junio C Hamano | e89102f | 2017-02-15 23:18:15 | [diff] [blame] | 124 | deinit [-f|--force] (--all|[--] <path>...):: |
Junio C Hamano | 240dc3f | 2013-03-25 23:37:03 | [diff] [blame] | 125 | Unregister the given submodules, i.e. remove the whole |
| 126 | `submodule.$name` section from .git/config together with their work |
| 127 | tree. Further calls to `git submodule update`, `git submodule foreach` |
| 128 | and `git submodule sync` will skip any unregistered submodules until |
| 129 | they are initialized again, so use this command if you don't want to |
Junio C Hamano | 387ce23 | 2017-07-12 23:01:13 | [diff] [blame] | 130 | have a local checkout of the submodule in your working tree anymore. |
Junio C Hamano | 240dc3f | 2013-03-25 23:37:03 | [diff] [blame] | 131 | + |
Junio C Hamano | 198b1f1 | 2016-05-17 22:27:24 | [diff] [blame] | 132 | When the command is run without pathspec, it errors out, |
| 133 | instead of deinit-ing everything, to prevent mistakes. |
| 134 | + |
| 135 | If `--force` is specified, the submodule's working tree will |
| 136 | be removed even if it contains local modifications. |
Junio C Hamano | 387ce23 | 2017-07-12 23:01:13 | [diff] [blame] | 137 | + |
| 138 | If you really want to remove a submodule from the repository and commit |
| 139 | that use linkgit:git-rm[1] instead. See linkgit:gitsubmodules[7] for removal |
| 140 | options. |
Junio C Hamano | 240dc3f | 2013-03-25 23:37:03 | [diff] [blame] | 141 | |
Junio C Hamano | cd639fa | 2024-08-16 17:29:58 | [diff] [blame^] | 142 | update [--init] [--remote] [-N|--no-fetch] [--[no-]recommend-shallow] [-f|--force] [--checkout|--rebase|--merge] [--reference <repository>] [--ref-format <format>] [--depth <depth>] [--recursive] [--jobs <n>] [--[no-]single-branch] [--filter <filter-spec>] [--] [<path>...]:: |
Junio C Hamano | 0f7b5a9 | 2008-05-17 06:12:23 | [diff] [blame] | 143 | + |
Junio C Hamano | 6bf68cf | 2015-03-06 23:46:29 | [diff] [blame] | 144 | -- |
| 145 | Update the registered submodules to match what the superproject |
Junio C Hamano | b3f862c | 2019-12-05 22:22:00 | [diff] [blame] | 146 | expects by cloning missing submodules, fetching missing commits |
| 147 | in submodules and updating the working tree of |
Junio C Hamano | 6bf68cf | 2015-03-06 23:46:29 | [diff] [blame] | 148 | the submodules. The "updating" can be done in several ways depending |
| 149 | on command line options and the value of `submodule.<name>.update` |
Junio C Hamano | e89102f | 2017-02-15 23:18:15 | [diff] [blame] | 150 | configuration variable. The command line option takes precedence over |
Junio C Hamano | 640779d | 2018-02-14 01:29:14 | [diff] [blame] | 151 | the configuration variable. If neither is given, a 'checkout' is performed. |
Junio C Hamano | 62908fd | 2023-08-04 19:05:22 | [diff] [blame] | 152 | (note: what is in `.gitmodules` file is irrelevant at this point; |
| 153 | see `git submodule init` above for how `.gitmodules` is used). |
Junio C Hamano | 640779d | 2018-02-14 01:29:14 | [diff] [blame] | 154 | The 'update' procedures supported both from the command line as well as |
| 155 | through the `submodule.<name>.update` configuration are: |
Junio C Hamano | 6bf68cf | 2015-03-06 23:46:29 | [diff] [blame] | 156 | |
| 157 | checkout;; the commit recorded in the superproject will be |
Junio C Hamano | e89102f | 2017-02-15 23:18:15 | [diff] [blame] | 158 | checked out in the submodule on a detached HEAD. |
Junio C Hamano | 6bf68cf | 2015-03-06 23:46:29 | [diff] [blame] | 159 | + |
| 160 | If `--force` is specified, the submodule will be checked out (using |
Junio C Hamano | 640779d | 2018-02-14 01:29:14 | [diff] [blame] | 161 | `git checkout --force`), even if the commit specified |
Junio C Hamano | 6bf68cf | 2015-03-06 23:46:29 | [diff] [blame] | 162 | in the index of the containing repository already matches the commit |
| 163 | checked out in the submodule. |
| 164 | |
| 165 | rebase;; the current branch of the submodule will be rebased |
Junio C Hamano | e89102f | 2017-02-15 23:18:15 | [diff] [blame] | 166 | onto the commit recorded in the superproject. |
Junio C Hamano | 6bf68cf | 2015-03-06 23:46:29 | [diff] [blame] | 167 | |
| 168 | merge;; the commit recorded in the superproject will be merged |
Junio C Hamano | e89102f | 2017-02-15 23:18:15 | [diff] [blame] | 169 | into the current branch in the submodule. |
| 170 | |
Junio C Hamano | 62908fd | 2023-08-04 19:05:22 | [diff] [blame] | 171 | The following update procedures have additional limitations: |
Junio C Hamano | 6bf68cf | 2015-03-06 23:46:29 | [diff] [blame] | 172 | |
Junio C Hamano | 62908fd | 2023-08-04 19:05:22 | [diff] [blame] | 173 | custom command;; mechanism for running arbitrary commands with the |
| 174 | commit ID as an argument. Specifically, if the |
| 175 | `submodule.<name>.update` configuration variable is set to |
| 176 | `!custom command`, the object name of the commit recorded in the |
| 177 | superproject for the submodule is appended to the `custom command` |
| 178 | string and executed. Note that this mechanism is not supported in |
| 179 | the `.gitmodules` file or on the command line. |
Junio C Hamano | 6bf68cf | 2015-03-06 23:46:29 | [diff] [blame] | 180 | |
Junio C Hamano | 62908fd | 2023-08-04 19:05:22 | [diff] [blame] | 181 | none;; the submodule is not updated. This update procedure is not |
| 182 | allowed on the command line. |
Junio C Hamano | 6bf68cf | 2015-03-06 23:46:29 | [diff] [blame] | 183 | |
Junio C Hamano | 0f7b5a9 | 2008-05-17 06:12:23 | [diff] [blame] | 184 | If the submodule is not yet initialized, and you just want to use the |
Junio C Hamano | 967cda7 | 2017-06-30 21:49:53 | [diff] [blame] | 185 | setting as stored in `.gitmodules`, you can automatically initialize the |
Junio C Hamano | e1296e9 | 2011-08-08 22:58:15 | [diff] [blame] | 186 | submodule with the `--init` option. |
Junio C Hamano | 6bf68cf | 2015-03-06 23:46:29 | [diff] [blame] | 187 | |
Junio C Hamano | e1296e9 | 2011-08-08 22:58:15 | [diff] [blame] | 188 | If `--recursive` is specified, this command will recurse into the |
Junio C Hamano | 0e066b9 | 2009-08-28 01:08:41 | [diff] [blame] | 189 | registered submodules, and update any nested submodules within. |
Junio C Hamano | 5f907e9 | 2022-02-26 00:21:27 | [diff] [blame] | 190 | |
Junio C Hamano | cd639fa | 2024-08-16 17:29:58 | [diff] [blame^] | 191 | If `--ref-format <format>` is specified, the ref storage format of newly |
| 192 | cloned submodules will be set accordingly. |
| 193 | |
Junio C Hamano | 6546a50 | 2024-02-08 23:48:36 | [diff] [blame] | 194 | If `--filter <filter-spec>` is specified, the given partial clone filter will be |
Junio C Hamano | 5f907e9 | 2022-02-26 00:21:27 | [diff] [blame] | 195 | applied to the submodule. See linkgit:git-rev-list[1] for details on filter |
| 196 | specifications. |
Junio C Hamano | 6bf68cf | 2015-03-06 23:46:29 | [diff] [blame] | 197 | -- |
Junio C Hamano | 48cd3f1 | 2019-10-09 05:55:30 | [diff] [blame] | 198 | set-branch (-b|--branch) <branch> [--] <path>:: |
| 199 | set-branch (-d|--default) [--] <path>:: |
Junio C Hamano | 2ba1471 | 2019-04-25 10:12:27 | [diff] [blame] | 200 | Sets the default remote tracking branch for the submodule. The |
| 201 | `--branch` option allows the remote branch to be specified. The |
| 202 | `--default` option removes the submodule.<name>.branch configuration |
Junio C Hamano | a891178 | 2020-07-07 05:35:57 | [diff] [blame] | 203 | key, which causes the tracking branch to default to the remote 'HEAD'. |
Junio C Hamano | 2ba1471 | 2019-04-25 10:12:27 | [diff] [blame] | 204 | |
Junio C Hamano | b489685 | 2019-12-10 23:15:09 | [diff] [blame] | 205 | set-url [--] <path> <newurl>:: |
| 206 | Sets the URL of the specified submodule to <newurl>. Then, it will |
| 207 | automatically synchronize the submodule's new remote URL |
| 208 | configuration. |
| 209 | |
Junio C Hamano | e89102f | 2017-02-15 23:18:15 | [diff] [blame] | 210 | summary [--cached|--files] [(-n|--summary-limit) <n>] [commit] [--] [<path>...]:: |
Junio C Hamano | 8b588d5 | 2008-03-15 09:48:37 | [diff] [blame] | 211 | Show commit summary between the given commit (defaults to HEAD) and |
| 212 | working tree/index. For a submodule in question, a series of commits |
| 213 | in the submodule between the given super project commit and the |
Junio C Hamano | e1296e9 | 2011-08-08 22:58:15 | [diff] [blame] | 214 | index or working tree (switched by `--cached`) are shown. If the option |
| 215 | `--files` is given, show the series of commits in the submodule between |
Junio C Hamano | c276ec7 | 2009-08-26 01:35:22 | [diff] [blame] | 216 | the index of the super project and the working tree of the submodule |
Junio C Hamano | e1296e9 | 2011-08-08 22:58:15 | [diff] [blame] | 217 | (this option doesn't allow to use the `--cached` option or to provide an |
Junio C Hamano | c276ec7 | 2009-08-26 01:35:22 | [diff] [blame] | 218 | explicit commit). |
Junio C Hamano | e1296e9 | 2011-08-08 22:58:15 | [diff] [blame] | 219 | + |
| 220 | Using the `--submodule=log` option with linkgit:git-diff[1] will provide that |
| 221 | information too. |
Junio C Hamano | 38b693c | 2007-06-03 08:40:14 | [diff] [blame] | 222 | |
Junio C Hamano | e89102f | 2017-02-15 23:18:15 | [diff] [blame] | 223 | foreach [--recursive] <command>:: |
Junio C Hamano | 3f2f6e5 | 2008-08-21 10:34:22 | [diff] [blame] | 224 | Evaluates an arbitrary shell command in each checked out submodule. |
Junio C Hamano | ec40f13 | 2018-06-28 21:40:57 | [diff] [blame] | 225 | The command has access to the variables $name, $sm_path, $displaypath, |
| 226 | $sha1 and $toplevel: |
Junio C Hamano | 967cda7 | 2017-06-30 21:49:53 | [diff] [blame] | 227 | $name is the name of the relevant submodule section in `.gitmodules`, |
Junio C Hamano | ec40f13 | 2018-06-28 21:40:57 | [diff] [blame] | 228 | $sm_path is the path of the submodule as recorded in the immediate |
| 229 | superproject, $displaypath contains the relative path from the |
| 230 | current working directory to the submodules root directory, |
| 231 | $sha1 is the commit as recorded in the immediate |
| 232 | superproject, and $toplevel is the absolute path to the top-level |
| 233 | of the immediate superproject. |
| 234 | Note that to avoid conflicts with '$PATH' on Windows, the '$path' |
| 235 | variable is now a deprecated synonym of '$sm_path' variable. |
Junio C Hamano | 3f2f6e5 | 2008-08-21 10:34:22 | [diff] [blame] | 236 | Any submodules defined in the superproject but not checked out are |
Junio C Hamano | e1296e9 | 2011-08-08 22:58:15 | [diff] [blame] | 237 | ignored by this command. Unless given `--quiet`, foreach prints the name |
Junio C Hamano | 3f2f6e5 | 2008-08-21 10:34:22 | [diff] [blame] | 238 | of each submodule before evaluating the command. |
Junio C Hamano | e1296e9 | 2011-08-08 22:58:15 | [diff] [blame] | 239 | If `--recursive` is given, submodules are traversed recursively (i.e. |
Junio C Hamano | 0e066b9 | 2009-08-28 01:08:41 | [diff] [blame] | 240 | the given shell command is evaluated in nested submodules as well). |
Junio C Hamano | 3f2f6e5 | 2008-08-21 10:34:22 | [diff] [blame] | 241 | A non-zero return from the command in any submodule causes |
| 242 | the processing to terminate. This can be overridden by adding '|| :' |
| 243 | to the end of the command. |
| 244 | + |
Junio C Hamano | e89102f | 2017-02-15 23:18:15 | [diff] [blame] | 245 | As an example, the command below will show the path and currently |
| 246 | checked out commit for each submodule: |
| 247 | + |
| 248 | -------------- |
Junio C Hamano | b7e497f | 2020-02-12 21:41:37 | [diff] [blame] | 249 | git submodule foreach 'echo $sm_path `git rev-parse HEAD`' |
Junio C Hamano | e89102f | 2017-02-15 23:18:15 | [diff] [blame] | 250 | -------------- |
Junio C Hamano | 3f2f6e5 | 2008-08-21 10:34:22 | [diff] [blame] | 251 | |
Junio C Hamano | e89102f | 2017-02-15 23:18:15 | [diff] [blame] | 252 | sync [--recursive] [--] [<path>...]:: |
Junio C Hamano | f9e04eb | 2008-08-28 02:50:50 | [diff] [blame] | 253 | Synchronizes submodules' remote URL configuration setting |
Junio C Hamano | 967cda7 | 2017-06-30 21:49:53 | [diff] [blame] | 254 | to the value specified in `.gitmodules`. It will only affect those |
Junio C Hamano | 0ff9816 | 2012-03-31 18:19:09 | [diff] [blame] | 255 | submodules which already have a URL entry in .git/config (that is the |
Junio C Hamano | 708376e | 2011-07-19 20:02:13 | [diff] [blame] | 256 | case when they are initialized or freshly added). This is useful when |
Junio C Hamano | f9e04eb | 2008-08-28 02:50:50 | [diff] [blame] | 257 | submodule URLs change upstream and you need to update your local |
| 258 | repositories accordingly. |
| 259 | + |
Junio C Hamano | ccb8252 | 2018-05-08 07:52:09 | [diff] [blame] | 260 | `git submodule sync` synchronizes all submodules while |
| 261 | `git submodule sync -- A` synchronizes submodule "A" only. |
Junio C Hamano | 45b356c | 2015-12-11 21:31:17 | [diff] [blame] | 262 | + |
| 263 | If `--recursive` is specified, this command will recurse into the |
| 264 | registered submodules, and sync any nested submodules within. |
Junio C Hamano | 3f2f6e5 | 2008-08-21 10:34:22 | [diff] [blame] | 265 | |
Junio C Hamano | 56ace3d | 2017-01-10 23:43:41 | [diff] [blame] | 266 | absorbgitdirs:: |
| 267 | If a git directory of a submodule is inside the submodule, |
Junio C Hamano | 9d828c9 | 2020-01-08 21:18:22 | [diff] [blame] | 268 | move the git directory of the submodule into its superproject's |
Junio C Hamano | 56ace3d | 2017-01-10 23:43:41 | [diff] [blame] | 269 | `$GIT_DIR/modules` path and then connect the git directory and |
| 270 | its working directory by setting the `core.worktree` and adding |
| 271 | a .git file pointing to the git directory embedded in the |
| 272 | superprojects git directory. |
| 273 | + |
| 274 | A repository that was cloned independently and later added as a submodule or |
| 275 | old setups have the submodules git directory inside the submodule instead of |
| 276 | embedded into the superprojects git directory. |
| 277 | + |
| 278 | This command is recursive by default. |
| 279 | |
Junio C Hamano | 38b693c | 2007-06-03 08:40:14 | [diff] [blame] | 280 | OPTIONS |
| 281 | ------- |
Junio C Hamano | eb41599 | 2008-06-08 22:49:47 | [diff] [blame] | 282 | -q:: |
| 283 | --quiet:: |
Junio C Hamano | 38b693c | 2007-06-03 08:40:14 | [diff] [blame] | 284 | Only print error messages. |
| 285 | |
Junio C Hamano | 309465b | 2018-05-30 06:32:59 | [diff] [blame] | 286 | --progress:: |
| 287 | This option is only valid for add and update commands. |
| 288 | Progress status is reported on the standard error stream |
| 289 | by default when it is attached to a terminal, unless -q |
| 290 | is specified. This flag forces progress status even if the |
| 291 | standard error stream is not directed to a terminal. |
| 292 | |
Junio C Hamano | 198b1f1 | 2016-05-17 22:27:24 | [diff] [blame] | 293 | --all:: |
| 294 | This option is only valid for the deinit command. Unregister all |
| 295 | submodules in the working tree. |
| 296 | |
Junio C Hamano | 2ba1471 | 2019-04-25 10:12:27 | [diff] [blame] | 297 | -b <branch>:: |
| 298 | --branch <branch>:: |
Junio C Hamano | 1d90cb0 | 2007-07-03 07:05:31 | [diff] [blame] | 299 | Branch of repository to add as submodule. |
Junio C Hamano | 52b6ba3 | 2014-04-01 00:26:48 | [diff] [blame] | 300 | The name of the branch is recorded as `submodule.<name>.branch` in |
Junio C Hamano | 4a401d5 | 2016-10-26 22:24:37 | [diff] [blame] | 301 | `.gitmodules` for `update --remote`. A special value of `.` is used to |
| 302 | indicate that the name of the branch in the submodule should be the |
Junio C Hamano | 2ba1471 | 2019-04-25 10:12:27 | [diff] [blame] | 303 | same name as the current branch in the current repository. If the |
Junio C Hamano | a891178 | 2020-07-07 05:35:57 | [diff] [blame] | 304 | option is not specified, it defaults to the remote 'HEAD'. |
Junio C Hamano | 1d90cb0 | 2007-07-03 07:05:31 | [diff] [blame] | 305 | |
Junio C Hamano | afabd32 | 2010-07-19 20:26:15 | [diff] [blame] | 306 | -f:: |
| 307 | --force:: |
Junio C Hamano | 240dc3f | 2013-03-25 23:37:03 | [diff] [blame] | 308 | This option is only valid for add, deinit and update commands. |
Junio C Hamano | 6003346 | 2011-05-03 00:48:43 | [diff] [blame] | 309 | When running add, allow adding an otherwise ignored submodule path. |
Junio C Hamano | 198b1f1 | 2016-05-17 22:27:24 | [diff] [blame] | 310 | When running deinit the submodule working trees will be removed even |
| 311 | if they contain local changes. |
Junio C Hamano | 6bf68cf | 2015-03-06 23:46:29 | [diff] [blame] | 312 | When running update (only effective with the checkout procedure), |
| 313 | throw away local changes in submodules when switching to a |
| 314 | different commit; and always run a checkout operation in the |
| 315 | submodule, even if the commit listed in the index of the |
| 316 | containing repository matches the commit checked out in the |
| 317 | submodule. |
Junio C Hamano | afabd32 | 2010-07-19 20:26:15 | [diff] [blame] | 318 | |
Junio C Hamano | 38b693c | 2007-06-03 08:40:14 | [diff] [blame] | 319 | --cached:: |
Junio C Hamano | 8b588d5 | 2008-03-15 09:48:37 | [diff] [blame] | 320 | This option is only valid for status and summary commands. These |
| 321 | commands typically use the commit found in the submodule HEAD, but |
| 322 | with this option, the commit stored in the index is used instead. |
| 323 | |
Junio C Hamano | c276ec7 | 2009-08-26 01:35:22 | [diff] [blame] | 324 | --files:: |
| 325 | This option is only valid for the summary command. This command |
| 326 | compares the commit in the index with that in the submodule HEAD |
| 327 | when this option is used. |
| 328 | |
Junio C Hamano | eb41599 | 2008-06-08 22:49:47 | [diff] [blame] | 329 | -n:: |
| 330 | --summary-limit:: |
Junio C Hamano | 8b588d5 | 2008-03-15 09:48:37 | [diff] [blame] | 331 | This option is only valid for the summary command. |
| 332 | Limit the summary size (number of commits shown in total). |
Junio C Hamano | 1bdd3b0 | 2008-04-13 05:33:18 | [diff] [blame] | 333 | Giving 0 will disable the summary; a negative number means unlimited |
Junio C Hamano | 8b588d5 | 2008-03-15 09:48:37 | [diff] [blame] | 334 | (the default). This limit only applies to modified submodules. The |
| 335 | size is always limited to 1 for added/deleted/typechanged submodules. |
Junio C Hamano | 38b693c | 2007-06-03 08:40:14 | [diff] [blame] | 336 | |
Junio C Hamano | abad6da | 2013-01-06 09:06:32 | [diff] [blame] | 337 | --remote:: |
| 338 | This option is only valid for the update command. Instead of using |
| 339 | the superproject's recorded SHA-1 to update the submodule, use the |
Junio C Hamano | 8401f14 | 2013-07-12 22:47:46 | [diff] [blame] | 340 | status of the submodule's remote-tracking branch. The remote used |
Junio C Hamano | abad6da | 2013-01-06 09:06:32 | [diff] [blame] | 341 | is branch's remote (`branch.<name>.remote`), defaulting to `origin`. |
Junio C Hamano | a891178 | 2020-07-07 05:35:57 | [diff] [blame] | 342 | The remote branch used defaults to the remote `HEAD`, but the branch |
| 343 | name may be overridden by setting the `submodule.<name>.branch` |
| 344 | option in either `.gitmodules` or `.git/config` (with `.git/config` |
| 345 | taking precedence). |
Junio C Hamano | abad6da | 2013-01-06 09:06:32 | [diff] [blame] | 346 | + |
| 347 | This works for any of the supported update procedures (`--checkout`, |
| 348 | `--rebase`, etc.). The only change is the source of the target SHA-1. |
| 349 | For example, `submodule update --remote --merge` will merge upstream |
| 350 | submodule changes into the submodules, while `submodule update |
| 351 | --merge` will merge superproject gitlink changes into the submodules. |
| 352 | + |
| 353 | In order to ensure a current tracking branch state, `update --remote` |
| 354 | fetches the submodule's remote repository before calculating the |
| 355 | SHA-1. If you don't want to fetch, you should use `submodule update |
| 356 | --remote --no-fetch`. |
Junio C Hamano | 5b3533d | 2014-02-27 23:07:15 | [diff] [blame] | 357 | + |
| 358 | Use this option to integrate changes from the upstream subproject with |
| 359 | your submodule's current HEAD. Alternatively, you can run `git pull` |
| 360 | from the submodule, which is equivalent except for the remote branch |
| 361 | name: `update --remote` uses the default upstream repository and |
| 362 | `submodule.<name>.branch`, while `git pull` uses the submodule's |
| 363 | `branch.<name>.merge`. Prefer `submodule.<name>.branch` if you want |
| 364 | to distribute the default upstream branch with the superproject and |
| 365 | `branch.<name>.merge` if you want a more native feel while working in |
| 366 | the submodule itself. |
Junio C Hamano | abad6da | 2013-01-06 09:06:32 | [diff] [blame] | 367 | |
Junio C Hamano | 8bc410e | 2009-02-15 10:38:19 | [diff] [blame] | 368 | -N:: |
| 369 | --no-fetch:: |
| 370 | This option is only valid for the update command. |
| 371 | Don't fetch new objects from the remote site. |
| 372 | |
Junio C Hamano | 81703b2 | 2014-03-14 22:00:27 | [diff] [blame] | 373 | --checkout:: |
| 374 | This option is only valid for the update command. |
| 375 | Checkout the commit recorded in the superproject on a detached HEAD |
| 376 | in the submodule. This is the default behavior, the main use of |
| 377 | this option is to override `submodule.$name.update` when set to |
Junio C Hamano | 6bf68cf | 2015-03-06 23:46:29 | [diff] [blame] | 378 | a value other than `checkout`. |
Junio C Hamano | 81703b2 | 2014-03-14 22:00:27 | [diff] [blame] | 379 | If the key `submodule.$name.update` is either not explicitly set or |
| 380 | set to `checkout`, this option is implicit. |
| 381 | |
Junio C Hamano | 0e88f3e | 2009-06-21 08:03:25 | [diff] [blame] | 382 | --merge:: |
| 383 | This option is only valid for the update command. |
| 384 | Merge the commit recorded in the superproject into the current branch |
| 385 | of the submodule. If this option is given, the submodule's HEAD will |
| 386 | not be detached. If a merge failure prevents this process, you will |
| 387 | have to resolve the resulting conflicts within the submodule with the |
| 388 | usual conflict resolution tools. |
| 389 | If the key `submodule.$name.update` is set to `merge`, this option is |
| 390 | implicit. |
| 391 | |
Junio C Hamano | 25e7ba6 | 2009-06-14 01:03:22 | [diff] [blame] | 392 | --rebase:: |
| 393 | This option is only valid for the update command. |
| 394 | Rebase the current branch onto the commit recorded in the |
| 395 | superproject. If this option is given, the submodule's HEAD will not |
Junio C Hamano | 167b138 | 2010-01-31 23:04:31 | [diff] [blame] | 396 | be detached. If a merge failure prevents this process, you will have |
Junio C Hamano | 25e7ba6 | 2009-06-14 01:03:22 | [diff] [blame] | 397 | to resolve these failures with linkgit:git-rebase[1]. |
| 398 | If the key `submodule.$name.update` is set to `rebase`, this option is |
| 399 | implicit. |
| 400 | |
Junio C Hamano | e1296e9 | 2011-08-08 22:58:15 | [diff] [blame] | 401 | --init:: |
| 402 | This option is only valid for the update command. |
| 403 | Initialize all submodules for which "git submodule init" has not been |
| 404 | called so far before updating. |
| 405 | |
Junio C Hamano | a129545 | 2012-11-13 22:32:04 | [diff] [blame] | 406 | --name:: |
| 407 | This option is only valid for the add command. It sets the submodule's |
| 408 | name to the given string instead of defaulting to its path. The name |
| 409 | must be valid as a directory name and may not end with a '/'. |
| 410 | |
Junio C Hamano | 7ae1825 | 2009-05-23 09:53:32 | [diff] [blame] | 411 | --reference <repository>:: |
| 412 | This option is only valid for add and update commands. These |
| 413 | commands sometimes need to clone a remote repository. In this case, |
| 414 | this option will be passed to the linkgit:git-clone[1] command. |
| 415 | + |
| 416 | *NOTE*: Do *not* use this option unless you have read the note |
Junio C Hamano | 309465b | 2018-05-30 06:32:59 | [diff] [blame] | 417 | for linkgit:git-clone[1]'s `--reference`, `--shared`, and `--dissociate` |
| 418 | options carefully. |
| 419 | |
| 420 | --dissociate:: |
| 421 | This option is only valid for add and update commands. These |
| 422 | commands sometimes need to clone a remote repository. In this case, |
| 423 | this option will be passed to the linkgit:git-clone[1] command. |
| 424 | + |
| 425 | *NOTE*: see the NOTE for the `--reference` option. |
Junio C Hamano | 7ae1825 | 2009-05-23 09:53:32 | [diff] [blame] | 426 | |
Junio C Hamano | 0e066b9 | 2009-08-28 01:08:41 | [diff] [blame] | 427 | --recursive:: |
Junio C Hamano | 45b356c | 2015-12-11 21:31:17 | [diff] [blame] | 428 | This option is only valid for foreach, update, status and sync commands. |
Junio C Hamano | 0e066b9 | 2009-08-28 01:08:41 | [diff] [blame] | 429 | Traverse submodules recursively. The operation is performed not |
| 430 | only in the submodules of the current repo, but also |
| 431 | in any nested submodules inside those submodules (and so on). |
| 432 | |
Junio C Hamano | ededf2b | 2013-07-15 21:11:16 | [diff] [blame] | 433 | --depth:: |
| 434 | This option is valid for add and update commands. Create a 'shallow' |
| 435 | clone with a history truncated to the specified number of revisions. |
| 436 | See linkgit:git-clone[1] |
| 437 | |
Junio C Hamano | fedb1b4 | 2016-06-20 21:23:40 | [diff] [blame] | 438 | --[no-]recommend-shallow:: |
| 439 | This option is only valid for the update command. |
| 440 | The initial clone of a submodule will use the recommended |
Junio C Hamano | 967cda7 | 2017-06-30 21:49:53 | [diff] [blame] | 441 | `submodule.<name>.shallow` as provided by the `.gitmodules` file |
Junio C Hamano | fedb1b4 | 2016-06-20 21:23:40 | [diff] [blame] | 442 | by default. To ignore the suggestions use `--no-recommend-shallow`. |
| 443 | |
Junio C Hamano | bec5da4 | 2016-04-06 22:58:21 | [diff] [blame] | 444 | -j <n>:: |
| 445 | --jobs <n>:: |
| 446 | This option is only valid for the update command. |
| 447 | Clone new submodules in parallel with as many jobs. |
| 448 | Defaults to the `submodule.fetchJobs` option. |
Junio C Hamano | ededf2b | 2013-07-15 21:11:16 | [diff] [blame] | 449 | |
Junio C Hamano | b082a53 | 2020-03-05 21:52:25 | [diff] [blame] | 450 | --[no-]single-branch:: |
| 451 | This option is only valid for the update command. |
| 452 | Clone only one branch during update: HEAD or one specified by --branch. |
| 453 | |
Junio C Hamano | 9e39507 | 2008-07-31 22:11:21 | [diff] [blame] | 454 | <path>...:: |
| 455 | Paths to submodule(s). When specified this will restrict the command |
Junio C Hamano | 38b693c | 2007-06-03 08:40:14 | [diff] [blame] | 456 | to only operate on the submodules found at the specified paths. |
Junio C Hamano | 38ddcce | 2008-07-15 15:49:03 | [diff] [blame] | 457 | (This argument is required with add). |
Junio C Hamano | 38b693c | 2007-06-03 08:40:14 | [diff] [blame] | 458 | |
| 459 | FILES |
| 460 | ----- |
Junio C Hamano | 967cda7 | 2017-06-30 21:49:53 | [diff] [blame] | 461 | When initializing submodules, a `.gitmodules` file in the top-level directory |
Junio C Hamano | 38b693c | 2007-06-03 08:40:14 | [diff] [blame] | 462 | of the containing repository is used to find the url of each submodule. |
Junio C Hamano | 91baf10 | 2007-12-31 09:44:26 | [diff] [blame] | 463 | This file should be formatted in the same way as `$GIT_DIR/config`. The key |
Junio C Hamano | 35738e8 | 2008-01-07 07:55:46 | [diff] [blame] | 464 | to each submodule url is "submodule.$name.url". See linkgit:gitmodules[5] |
Junio C Hamano | e66c6c0 | 2007-12-17 08:26:13 | [diff] [blame] | 465 | for details. |
Junio C Hamano | 38b693c | 2007-06-03 08:40:14 | [diff] [blame] | 466 | |
Junio C Hamano | 387ce23 | 2017-07-12 23:01:13 | [diff] [blame] | 467 | SEE ALSO |
| 468 | -------- |
| 469 | linkgit:gitsubmodules[7], linkgit:gitmodules[5]. |
| 470 | |
Junio C Hamano | 38b693c | 2007-06-03 08:40:14 | [diff] [blame] | 471 | GIT |
| 472 | --- |
Junio C Hamano | f7c042d | 2008-06-06 22:50:53 | [diff] [blame] | 473 | Part of the linkgit:git[1] suite |