Lars Hjemli | 70c7ac2 | 2007-05-26 15:56:40 +0200 | [diff] [blame] | 1 | git-submodule(1) |
| 2 | ================ |
| 3 | |
| 4 | NAME |
| 5 | ---- |
| 6 | git-submodule - Initialize, update or inspect submodules |
| 7 | |
| 8 | |
| 9 | SYNOPSIS |
| 10 | -------- |
Matt Kraai | b249364 | 2007-07-06 17:56:31 -0700 | [diff] [blame] | 11 | [verse] |
Steffen Prohaska | c4a95c9 | 2008-01-21 07:41:27 +0100 | [diff] [blame] | 12 | 'git-submodule' [--quiet] add [-b branch] [--] <repository> [<path>] |
| 13 | 'git-submodule' [--quiet] status [--cached] [--] [<path>...] |
| 14 | 'git-submodule' [--quiet] [init|update] [--] [<path>...] |
Ping Yin | 925e7f6 | 2008-03-11 21:52:18 +0800 | [diff] [blame] | 15 | 'git-submodule' [--quiet] summary [--summary-limit <n>] [commit] [--] [<path>...] |
Lars Hjemli | 70c7ac2 | 2007-05-26 15:56:40 +0200 | [diff] [blame] | 16 | |
| 17 | |
| 18 | COMMANDS |
| 19 | -------- |
Sven Verdoolaege | ecda072 | 2007-06-24 23:06:07 +0200 | [diff] [blame] | 20 | add:: |
| 21 | Add the given repository as a submodule at the given path |
Mark Levedahl | d4264ca | 2008-03-04 20:15:02 -0500 | [diff] [blame] | 22 | to the changeset to be committed next. If path is a valid |
| 23 | repository within the project, it is added as is. Otherwise, |
| 24 | repository is cloned at the specified path. path is added to the |
Sven Verdoolaege | ecda072 | 2007-06-24 23:06:07 +0200 | [diff] [blame] | 25 | changeset and registered in .gitmodules. If no path is |
| 26 | specified, the path is deduced from the repository specification. |
Mark Levedahl | f31a522 | 2007-09-23 22:19:42 -0400 | [diff] [blame] | 27 | If the repository url begins with ./ or ../, it is stored as |
| 28 | given but resolved as a relative path from the main project's |
| 29 | url when cloning. |
Sven Verdoolaege | ecda072 | 2007-06-24 23:06:07 +0200 | [diff] [blame] | 30 | |
Lars Hjemli | 70c7ac2 | 2007-05-26 15:56:40 +0200 | [diff] [blame] | 31 | status:: |
| 32 | Show the status of the submodules. This will print the SHA-1 of the |
| 33 | currently checked out commit for each submodule, along with the |
Dan McGee | 5162e69 | 2007-12-29 00:20:38 -0600 | [diff] [blame] | 34 | submodule path and the output of linkgit:git-describe[1] for the |
Lars Hjemli | 70c7ac2 | 2007-05-26 15:56:40 +0200 | [diff] [blame] | 35 | SHA-1. Each SHA-1 will be prefixed with `-` if the submodule is not |
| 36 | initialized and `+` if the currently checked out submodule commit |
| 37 | does not match the SHA-1 found in the index of the containing |
| 38 | repository. This command is the default command for git-submodule. |
| 39 | |
| 40 | init:: |
Lars Hjemli | 211b7f1 | 2007-06-06 11:13:02 +0200 | [diff] [blame] | 41 | Initialize the submodules, i.e. register in .git/config each submodule |
Lars Hjemli | 813a0bd | 2007-07-06 19:38:38 +0200 | [diff] [blame] | 42 | name and url found in .gitmodules. The key used in .git/config is |
| 43 | `submodule.$name.url`. This command does not alter existing information |
Lars Hjemli | 211b7f1 | 2007-06-06 11:13:02 +0200 | [diff] [blame] | 44 | in .git/config. |
Lars Hjemli | 70c7ac2 | 2007-05-26 15:56:40 +0200 | [diff] [blame] | 45 | |
| 46 | update:: |
Lars Hjemli | 211b7f1 | 2007-06-06 11:13:02 +0200 | [diff] [blame] | 47 | Update the registered submodules, i.e. clone missing submodules and |
| 48 | checkout the commit specified in the index of the containing repository. |
| 49 | This will make the submodules HEAD be detached. |
Lars Hjemli | 70c7ac2 | 2007-05-26 15:56:40 +0200 | [diff] [blame] | 50 | |
Ping Yin | 925e7f6 | 2008-03-11 21:52:18 +0800 | [diff] [blame] | 51 | summary:: |
| 52 | Show commit summary between the given commit (defaults to HEAD) and |
| 53 | working tree/index. For a submodule in question, a series of commits |
| 54 | in the submodule between the given super project commit and the |
| 55 | index or working tree (switched by --cached) are shown. |
Lars Hjemli | 70c7ac2 | 2007-05-26 15:56:40 +0200 | [diff] [blame] | 56 | |
| 57 | OPTIONS |
| 58 | ------- |
| 59 | -q, --quiet:: |
| 60 | Only print error messages. |
| 61 | |
Sven Verdoolaege | ecda072 | 2007-06-24 23:06:07 +0200 | [diff] [blame] | 62 | -b, --branch:: |
| 63 | Branch of repository to add as submodule. |
| 64 | |
Lars Hjemli | 70c7ac2 | 2007-05-26 15:56:40 +0200 | [diff] [blame] | 65 | --cached:: |
Ping Yin | 925e7f6 | 2008-03-11 21:52:18 +0800 | [diff] [blame] | 66 | This option is only valid for status and summary commands. These |
| 67 | commands typically use the commit found in the submodule HEAD, but |
| 68 | with this option, the commit stored in the index is used instead. |
| 69 | |
| 70 | -n, --summary-limit:: |
| 71 | This option is only valid for the summary command. |
| 72 | Limit the summary size (number of commits shown in total). |
Junio C Hamano | 51836e9 | 2008-04-12 18:34:39 -0700 | [diff] [blame^] | 73 | Giving 0 will disable the summary; a negative number means unlimited |
Ping Yin | 925e7f6 | 2008-03-11 21:52:18 +0800 | [diff] [blame] | 74 | (the default). This limit only applies to modified submodules. The |
| 75 | size is always limited to 1 for added/deleted/typechanged submodules. |
Lars Hjemli | 70c7ac2 | 2007-05-26 15:56:40 +0200 | [diff] [blame] | 76 | |
| 77 | <path>:: |
| 78 | Path to submodule(s). When specified this will restrict the command |
| 79 | to only operate on the submodules found at the specified paths. |
| 80 | |
| 81 | FILES |
| 82 | ----- |
Lars Hjemli | 211b7f1 | 2007-06-06 11:13:02 +0200 | [diff] [blame] | 83 | When initializing submodules, a .gitmodules file in the top-level directory |
Lars Hjemli | 70c7ac2 | 2007-05-26 15:56:40 +0200 | [diff] [blame] | 84 | of the containing repository is used to find the url of each submodule. |
Junio C Hamano | c458570 | 2007-12-27 23:29:53 -0800 | [diff] [blame] | 85 | This file should be formatted in the same way as `$GIT_DIR/config`. The key |
Dan McGee | 5162e69 | 2007-12-29 00:20:38 -0600 | [diff] [blame] | 86 | to each submodule url is "submodule.$name.url". See linkgit:gitmodules[5] |
Junio C Hamano | 6fbe42c | 2007-12-16 22:03:21 -0800 | [diff] [blame] | 87 | for details. |
Lars Hjemli | 70c7ac2 | 2007-05-26 15:56:40 +0200 | [diff] [blame] | 88 | |
| 89 | |
| 90 | AUTHOR |
| 91 | ------ |
| 92 | Written by Lars Hjemli <hjemli@gmail.com> |
| 93 | |
| 94 | GIT |
| 95 | --- |
Dan McGee | 5162e69 | 2007-12-29 00:20:38 -0600 | [diff] [blame] | 96 | Part of the linkgit:git[7] suite |