]> git.ipfire.org Git - thirdparty/git.git/blame - Documentation/git-status.txt
Add the option "--ignore-submodules" to "git status"
[thirdparty/git.git] / Documentation / git-status.txt
CommitLineData
215a7ad1
JH
1git-status(1)
2=============
3f971fc4
JH
3
4NAME
5----
c3f0baac 6git-status - Show the working tree status
3f971fc4
JH
7
8
9SYNOPSIS
10--------
9e4b7ab6 11'git status' [<options>...] [--] [<pathspec>...]
3f971fc4
JH
12
13DESCRIPTION
14-----------
2099bca9
JK
15Displays paths that have differences between the index file and the
16current HEAD commit, paths that have differences between the working
17tree and the index file, and paths in the working tree that are not
5162e697 18tracked by git (and are not ignored by linkgit:gitignore[5]). The first
2099bca9 19are what you _would_ commit by running `git commit`; the second and
0b444cdb 20third are what you _could_ commit by running 'git add' before running
2099bca9 21`git commit`.
3f971fc4 22
9e4b7ab6
JH
23OPTIONS
24-------
25
26-s::
27--short::
28 Give the output in the short-format.
29
6f157871
JK
30--porcelain::
31 Give the output in a stable, easy-to-parse format for scripts.
32 Currently this is identical to --short output, but is guaranteed
33 not to change in the future, making it safe for scripts.
34
9e4b7ab6
JH
35-u[<mode>]::
36--untracked-files[=<mode>]::
37 Show untracked files (Default: 'all').
38+
39The mode parameter is optional, and is used to specify
40the handling of untracked files. The possible options are:
41+
42--
43 - 'no' - Show no untracked files
44 - 'normal' - Shows untracked files and directories
45 - 'all' - Also shows individual files in untracked directories.
46--
47+
48See linkgit:git-config[1] for configuration variable
49used to change the default for when the option is not
50specified.
51
46a958b3
JL
52--ignore-submodules[=<when>]::
53 Ignore changes to submodules when looking for changes. <when> can be
54 either "untracked", "dirty" or "all", which is the default. When
55 "untracked" is used submodules are not considered dirty when they only
56 contain untracked content (but they are still scanned for modified
57 content). Using "dirty" ignores all changes to the work tree of submodules,
58 only changes to the commits stored in the superproject are shown (this was
59 the behavior before 1.7.0). Using "all" hides all changes to submodules
60 (and suppresses the output of submodule summaries when the config option
61 `status.submodulesummary` is set).
62
9e4b7ab6 63-z::
6f157871
JK
64 Terminate entries with NUL, instead of LF. This implies
65 the `--porcelain` output format if no other format is given.
2099bca9 66
3f971fc4
JH
67
68OUTPUT
69------
70The output from this command is designed to be used as a commit
2099bca9 71template comment, and all the output lines are prefixed with '#'.
9e4b7ab6
JH
72The default, long format, is designed to be human readable,
73verbose and descriptive. They are subject to change in any time.
3f971fc4 74
c7860507 75The paths mentioned in the output, unlike many other git commands, are
2099bca9 76made relative to the current directory if you are working in a
46f721c8
JK
77subdirectory (this is on purpose, to help cutting and pasting). See
78the status.relativePaths config option below.
c7860507 79
9e4b7ab6
JH
80In short-format, the status of each path is shown as
81
82 XY PATH1 -> PATH2
83
84where `PATH1` is the path in the `HEAD`, and ` -> PATH2` part is
85shown only when `PATH1` corresponds to a different path in the
e92e9cd3
ER
86index/worktree (i.e. the file is renamed). The 'XY' is a two-letter
87status code.
88
89The fields (including the `->`) are separated from each other by a
90single space. If a filename contains whitespace or other nonprintable
91characters, that field will be quoted in the manner of a C string
92literal: surrounded by ASCII double quote (34) characters, and with
93interior special characters backslash-escaped.
94
95For paths with merge conflicts, `X` and 'Y' show the modification
96states of each side of the merge. For paths that do not have merge
97conflicts, `X` shows the status of the index, and `Y` shows the status
98of the work tree. For untracked paths, `XY` are `??`. Other status
99codes can be interpreted as follows:
100
101* ' ' = unmodified
102* 'M' = modified
103* 'A' = added
104* 'D' = deleted
105* 'R' = renamed
106* 'C' = copied
107* 'U' = updated but unmerged
108
109Ignored files are not listed.
9e4b7ab6
JH
110
111 X Y Meaning
112 -------------------------------------------------
113 [MD] not updated
114 M [ MD] updated in index
115 A [ MD] added to index
e92e9cd3 116 D [ M] deleted from index
9e4b7ab6
JH
117 R [ MD] renamed in index
118 C [ MD] copied in index
119 [MARC] index and work tree matches
120 [ MARC] M work tree changed since index
121 [ MARC] D deleted in work tree
122 -------------------------------------------------
123 D D unmerged, both deleted
124 A U unmerged, added by us
125 U D unmerged, deleted by them
126 U A unmerged, added by them
127 D U unmerged, deleted by us
128 A A unmerged, both added
129 U U unmerged, both modified
130 -------------------------------------------------
131 ? ? untracked
132 -------------------------------------------------
133
e92e9cd3
ER
134There is an alternate -z format recommended for machine parsing. In
135that format, the status field is the same, but some other things
136change. First, the '->' is omitted from rename entries and the field
137order is reversed (e.g 'from -> to' becomes 'to from'). Second, a NUL
138(ASCII 0) follows each filename, replacing space as a field separator
139and the terminating newline (but a space still separates the status
140field from the first filename). Third, filenames containing special
141characters are not specially formatted; no quoting or
142backslash-escaping is performed.
3f971fc4 143
31fcd63c
JH
144CONFIGURATION
145-------------
146
147The command honors `color.status` (or `status.color` -- they
148mean the same thing and the latter is kept for backward
149compatibility) and `color.status.<slot>` configuration variables
150to colorize its output.
151
46f721c8 152If the config variable `status.relativePaths` is set to false, then all
482a6c10
MG
153paths shown are relative to the repository root, not to the current
154directory.
46f721c8 155
ac8d5afc 156If `status.submodulesummary` is set to a non zero number or true (identical
46b77a6b
JK
157to -1 or an unlimited number), the submodule summary will be enabled for
158the long format and a summary of commits for modified submodules will be
159shown (see --summary-limit option of linkgit:git-submodule[1]).
ac8d5afc 160
56ae8df5 161SEE ALSO
cedb8d5d 162--------
5162e697 163linkgit:gitignore[5]
31fcd63c 164
3f971fc4
JH
165Author
166------
9e4b7ab6 167Written by Junio C Hamano <gitster@pobox.com>.
3f971fc4
JH
168
169Documentation
170--------------
171Documentation by David Greaves, Junio C Hamano and the git-list <git@vger.kernel.org>.
172
173GIT
174---
9e1f0a85 175Part of the linkgit:git[1] suite