]> git.ipfire.org Git - thirdparty/git.git/blame - Documentation/git-ls-files.txt
Merge refs/heads/master from paulus
[thirdparty/git.git] / Documentation / git-ls-files.txt
CommitLineData
2cf565c5
DG
1git-ls-files(1)
2===============
3v0.1, May 2005
4
5NAME
6----
7git-ls-files - Information about files in the cache/working directory
8
9
10SYNOPSIS
11--------
12'git-ls-files' [-z] [-t]
6ca45943
JH
13 (--[cached|deleted|others|ignored|stage|unmerged|killed])\*
14 (-[c|d|o|i|s|u|k])\*
2cf565c5
DG
15 [-x <pattern>|--exclude=<pattern>]
16 [-X <file>|--exclude-from=<file>]
30b0535f 17 [--exclude-per-directory=<file>]
2cf565c5
DG
18
19DESCRIPTION
20-----------
21This merges the file listing in the directory cache index with the
22actual working directory list, and shows different combinations of the
23two.
24
25One or more of the options below may be used to determine the files
26shown:
27
28OPTIONS
29-------
30-c|--cached::
31 Show cached files in the output (default)
32
33-d|--deleted::
34 Show deleted files in the output
35
36-o|--others::
37 Show other files in the output
38
39-i|--ignored::
40 Show ignored files in the output
41 Note the this also reverses any exclude list present.
42
43-s|--stage::
44 Show stage files in the output
45
46-u|--unmerged::
47 Show unmerged files in the output (forces --stage)
48
6ca45943
JH
49-k|--killed::
50 Show files on the filesystem that need to be removed due
51 to file/directory conflicts for checkout-cache to
52 succeed.
53
2cf565c5
DG
54-z::
55 \0 line termination on output
56
57-x|--exclude=<pattern>::
58 Skips files matching pattern.
59 Note that pattern is a shell wildcard pattern.
60
61-X|--exclude-from=<file>::
62 exclude patterns are read from <file>; 1 per line.
30b0535f
JH
63
64--exclude-per-directory=<file>::
65 read additional exclude patterns that apply only to the
66 directory and its subdirectories in <file>.
2cf565c5
DG
67
68-t::
69 Identify the file status with the following tags (followed by
70 a space) at the start of each line:
71 H cached
72 M unmerged
73 R removed/deleted
6ca45943 74 K to be killed
2cf565c5
DG
75 ? other
76
77Output
78------
79show files just outputs the filename unless '--stage' is specified in
80which case it outputs:
81
82 [<tag> ]<mode> <object> <stage> <file>
83
84"git-ls-files --unmerged" and "git-ls-files --stage" can be used to examine
85detailed information on unmerged paths.
86
87For an unmerged path, instead of recording a single mode/SHA1 pair,
88the dircache records up to three such pairs; one from tree O in stage
891, A in stage 2, and B in stage 3. This information can be used by
2c6e4771 90the user (or the porcelain) to see what should eventually be recorded at the
2cf565c5
DG
91path. (see read-cache for more information on state)
92
30b0535f
JH
93
94Exclude Patterns
95----------------
96
97'git-ls-files' can use a list of "exclude patterns" when
98traversing the directory tree and finding files to show when the
99flags --others or --ignored are specified.
100
101These exclude patterns come from these places:
102
103 (1) command line flag --exclude=<pattern> specifies a single
104 pattern.
105
106 (2) command line flag --exclude-from=<file> specifies a list of
107 patterns stored in a file.
108
109 (3) command line flag --exclude-per-directory=<name> specifies
110 a name of the file in each directory 'git-ls-files'
111 examines, and if exists, its contents are used as an
112 additional list of patterns.
113
114An exclude pattern file used by (2) and (3) contains one pattern
115per line. A line that starts with a '#' can be used as comment
116for readability.
117
1df092d2
JH
118There are three lists of patterns that are in effect at a given
119time. They are built and ordered in the following way:
30b0535f 120
1df092d2
JH
121 * --exclude=<pattern> from the command line; patterns are
122 ordered in the same order as they appear on the command line.
123
124 * lines read from --exclude-from=<file>; patterns are ordered
125 in the same order as they appear in the file.
30b0535f
JH
126
127 * When --exclude-per-directory=<name> is specified, upon
128 entering a directory that has such a file, its contents are
129 appended at the end of the current "list of patterns". They
130 are popped off when leaving the directory.
131
132Each pattern in the pattern list specifies "a match pattern" and
2c6e4771 133optionally the fate; either a file that matches the pattern is
1df092d2
JH
134considered excluded or included. A filename is matched against
135the patterns in the three lists; the --exclude-from list is
136checked first, then the --exclude-per-directory list, and then
137finally the --exclude list. The last match determines its fate.
138If there is no match in the three lists, the fate is "included".
30b0535f
JH
139
140A pattern specified on the command line with --exclude or read
141from the file specified with --exclude-from is relative to the
142top of the directory tree. A pattern read from a file specified
143by --exclude-per-directory is relative to the directory that the
144pattern file appears in.
145
146An exclude pattern is of the following format:
147
148 - an optional prefix '!' which means that the fate this pattern
149 specifies is "include", not the usual "exclude"; the
150 remainder of the pattern string is interpreted according to
151 the following rules.
152
153 - if it does not contain a slash '/', it is a shell glob
154 pattern and used to match against the filename without
155 leading directories (i.e. the same way as the current
156 implementation).
157
158 - otherwise, it is a shell glob pattern, suitable for
159 consumption by fnmatch(3) with FNM_PATHNAME flag. I.e. a
160 slash in the pattern must match a slash in the pathname.
161 "Documentation/*.html" matches "Documentation/git.html" but
162 not "ppc/ppc.html". As a natural exception, "/*.c" matches
163 "cat-file.c" but not "mozilla-sha1/sha1.c".
164
165An example:
166
167 $ cat .git/ignore
168 # ignore objects and archives, anywhere in the tree.
169 *.[oa]
170 $ cat Documentation/.gitignore
171 # ignore generated html files,
1df092d2 172 *.html
30b0535f
JH
173 # except foo.html which is maintained by hand
174 !foo.html
30b0535f
JH
175 $ git-ls-files --ignored \
176 --exclude='Documentation/*.[0-9]' \
177 --exclude-from=.git/ignore \
178 --exclude-per-directory=.gitignore
179
180
c1bdacf9
DG
181See Also
182--------
183link:read-cache.html[read-cache]
2cf565c5
DG
184
185
186Author
187------
188Written by Linus Torvalds <torvalds@osdl.org>
189
190Documentation
191--------------
192Documentation by David Greaves, Junio C Hamano and the git-list <git@vger.kernel.org>.
193
194GIT
195---
196Part of the link:git.html[git] suite
197