]> git.ipfire.org Git - thirdparty/git.git/blob - Documentation/git-submodule.txt
Documentation/git-submodule: refer to gitmodules(5)
[thirdparty/git.git] / Documentation / git-submodule.txt
1 git-submodule(1)
2 ================
3
4 NAME
5 ----
6 git-submodule - Initialize, update or inspect submodules
7
8
9 SYNOPSIS
10 --------
11 [verse]
12 'git-submodule' [--quiet] [-b branch] add <repository> [<path>]
13 'git-submodule' [--quiet] [--cached] [status|init|update] [--] [<path>...]
14
15
16 COMMANDS
17 --------
18 add::
19 Add the given repository as a submodule at the given path
20 to the changeset to be committed next. In particular, the
21 repository is cloned at the specified path, added to the
22 changeset and registered in .gitmodules. If no path is
23 specified, the path is deduced from the repository specification.
24 If the repository url begins with ./ or ../, it is stored as
25 given but resolved as a relative path from the main project's
26 url when cloning.
27
28 status::
29 Show the status of the submodules. This will print the SHA-1 of the
30 currently checked out commit for each submodule, along with the
31 submodule path and the output of gitlink:git-describe[1] for the
32 SHA-1. Each SHA-1 will be prefixed with `-` if the submodule is not
33 initialized and `+` if the currently checked out submodule commit
34 does not match the SHA-1 found in the index of the containing
35 repository. This command is the default command for git-submodule.
36
37 init::
38 Initialize the submodules, i.e. register in .git/config each submodule
39 name and url found in .gitmodules. The key used in .git/config is
40 `submodule.$name.url`. This command does not alter existing information
41 in .git/config.
42
43 update::
44 Update the registered submodules, i.e. clone missing submodules and
45 checkout the commit specified in the index of the containing repository.
46 This will make the submodules HEAD be detached.
47
48
49 OPTIONS
50 -------
51 -q, --quiet::
52 Only print error messages.
53
54 -b, --branch::
55 Branch of repository to add as submodule.
56
57 --cached::
58 Display the SHA-1 stored in the index, not the SHA-1 of the currently
59 checked out submodule commit. This option is only valid for the
60 status command.
61
62 <path>::
63 Path to submodule(s). When specified this will restrict the command
64 to only operate on the submodules found at the specified paths.
65
66 FILES
67 -----
68 When initializing submodules, a .gitmodules file in the top-level directory
69 of the containing repository is used to find the url of each submodule.
70 This file should be formatted in the same way as $GIR_DIR/config. The key
71 to each submodule url is "submodule.$name.url". See gitlink:gitmodules[5]
72 for details.
73
74
75 AUTHOR
76 ------
77 Written by Lars Hjemli <hjemli@gmail.com>
78
79 GIT
80 ---
81 Part of the gitlink:git[7] suite