2005-05-10 23:32:30 +02:00
|
|
|
git-ls-files(1)
|
|
|
|
===============
|
|
|
|
|
|
|
|
NAME
|
|
|
|
----
|
2007-01-19 00:53:37 +01:00
|
|
|
git-ls-files - Show information about files in the index and the working tree
|
2005-05-10 23:32:30 +02:00
|
|
|
|
|
|
|
|
|
|
|
SYNOPSIS
|
|
|
|
--------
|
2006-02-12 10:48:47 +01:00
|
|
|
[verse]
|
2008-06-30 08:09:04 +02:00
|
|
|
'git ls-files' [-z] [-t] [-v]
|
2010-08-20 12:31:58 +02:00
|
|
|
(--[cached|deleted|others|ignored|stage|unmerged|killed|modified])*
|
|
|
|
(-[c|d|o|i|s|u|k|m])*
|
2016-01-16 07:50:02 +01:00
|
|
|
[--eol]
|
2005-05-10 23:32:30 +02:00
|
|
|
[-x <pattern>|--exclude=<pattern>]
|
|
|
|
[-X <file>|--exclude-from=<file>]
|
2006-03-07 20:59:17 +01:00
|
|
|
[--exclude-per-directory=<file>]
|
2007-11-15 08:04:30 +01:00
|
|
|
[--exclude-standard]
|
2007-09-15 01:59:04 +02:00
|
|
|
[--error-unmatch] [--with-tree=<tree-ish>]
|
2010-10-08 19:31:17 +02:00
|
|
|
[--full-name] [--abbrev] [--] [<file>...]
|
2005-05-10 23:32:30 +02:00
|
|
|
|
|
|
|
DESCRIPTION
|
|
|
|
-----------
|
|
|
|
This merges the file listing in the directory cache index with the
|
|
|
|
actual working directory list, and shows different combinations of the
|
|
|
|
two.
|
|
|
|
|
|
|
|
One or more of the options below may be used to determine the files
|
|
|
|
shown:
|
|
|
|
|
|
|
|
OPTIONS
|
|
|
|
-------
|
2008-06-08 03:36:09 +02:00
|
|
|
-c::
|
|
|
|
--cached::
|
2005-05-10 23:32:30 +02:00
|
|
|
Show cached files in the output (default)
|
|
|
|
|
2008-06-08 03:36:09 +02:00
|
|
|
-d::
|
|
|
|
--deleted::
|
2005-05-10 23:32:30 +02:00
|
|
|
Show deleted files in the output
|
|
|
|
|
2008-06-08 03:36:09 +02:00
|
|
|
-m::
|
|
|
|
--modified::
|
2005-09-20 00:11:15 +02:00
|
|
|
Show modified files in the output
|
|
|
|
|
2008-06-08 03:36:09 +02:00
|
|
|
-o::
|
|
|
|
--others::
|
2009-08-06 17:11:48 +02:00
|
|
|
Show other (i.e. untracked) files in the output
|
2005-05-10 23:32:30 +02:00
|
|
|
|
2008-06-08 03:36:09 +02:00
|
|
|
-i::
|
|
|
|
--ignored::
|
ls-files: unbreak "ls-files -i"
Commit b5227d8 changed the behavior of "ls-files" with
respect to includes, but accidentally broke the "-i" option
The original behavior was:
1. if no "-i" is given, cull all results according to --exclude*
2. if "-i" is given, show the inverse of (1)
The broken behavior was:
1. if no "-i" is given:
a. for "-o", cull results according to --exclude*
b. for index files, always show all
2. if "-i" is given:
a. for "-o", shows the inverse of (1a)
b. for index files, always show all
The fixed behavior keeps the new (1b) behavior introduced
by b5227d8, but fixes the (2b) behavior to show only ignored
files, not all files.
This patch also tweaks the documentation. The original text
was somewhat obscure in the first place, but it is also now
inaccurate (the relationship between (1b) and (2b) is not
quite a "reverse").
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2009-10-30 20:05:52 +01:00
|
|
|
Show only ignored files in the output. When showing files in the
|
|
|
|
index, print only those matched by an exclude pattern. When
|
|
|
|
showing "other" files, show only those matched by an exclude
|
|
|
|
pattern.
|
2005-05-10 23:32:30 +02:00
|
|
|
|
2008-06-08 03:36:09 +02:00
|
|
|
-s::
|
|
|
|
--stage::
|
2008-07-29 07:26:47 +02:00
|
|
|
Show staged contents' object name, mode bits and stage number in the output.
|
2005-05-10 23:32:30 +02:00
|
|
|
|
2006-01-22 01:22:30 +01:00
|
|
|
--directory::
|
|
|
|
If a whole directory is classified as "other", show just its
|
|
|
|
name (with a trailing slash) and not its whole contents.
|
|
|
|
|
2006-03-26 16:59:52 +02:00
|
|
|
--no-empty-directory::
|
|
|
|
Do not list empty directories. Has no effect without --directory.
|
|
|
|
|
2008-06-08 03:36:09 +02:00
|
|
|
-u::
|
|
|
|
--unmerged::
|
2005-05-10 23:32:30 +02:00
|
|
|
Show unmerged files in the output (forces --stage)
|
|
|
|
|
2008-06-08 03:36:09 +02:00
|
|
|
-k::
|
|
|
|
--killed::
|
2005-05-13 02:17:54 +02:00
|
|
|
Show files on the filesystem that need to be removed due
|
2005-10-07 23:05:03 +02:00
|
|
|
to file/directory conflicts for checkout-index to
|
2005-05-13 02:17:54 +02:00
|
|
|
succeed.
|
|
|
|
|
2005-05-10 23:32:30 +02:00
|
|
|
-z::
|
2005-10-15 06:56:46 +02:00
|
|
|
\0 line termination on output.
|
2005-05-10 23:32:30 +02:00
|
|
|
|
2008-06-08 03:36:09 +02:00
|
|
|
-x <pattern>::
|
|
|
|
--exclude=<pattern>::
|
2010-09-16 02:34:20 +02:00
|
|
|
Skip untracked files matching pattern.
|
2010-09-16 01:56:48 +02:00
|
|
|
Note that pattern is a shell wildcard pattern. See EXCLUDE PATTERNS
|
|
|
|
below for more information.
|
2005-05-10 23:32:30 +02:00
|
|
|
|
2008-06-08 03:36:09 +02:00
|
|
|
-X <file>::
|
|
|
|
--exclude-from=<file>::
|
2010-09-16 02:34:20 +02:00
|
|
|
Read exclude patterns from <file>; 1 per line.
|
2005-07-25 00:47:26 +02:00
|
|
|
|
|
|
|
--exclude-per-directory=<file>::
|
2010-09-16 02:34:20 +02:00
|
|
|
Read additional exclude patterns that apply only to the
|
2005-07-25 00:47:26 +02:00
|
|
|
directory and its subdirectories in <file>.
|
2005-05-10 23:32:30 +02:00
|
|
|
|
2007-11-15 08:04:30 +01:00
|
|
|
--exclude-standard::
|
2013-01-21 20:17:53 +01:00
|
|
|
Add the standard Git exclusions: .git/info/exclude, .gitignore
|
2007-11-15 08:04:30 +01:00
|
|
|
in each directory, and the user's global exclusion file.
|
|
|
|
|
2006-02-21 21:48:30 +01:00
|
|
|
--error-unmatch::
|
|
|
|
If any <file> does not appear in the index, treat this as an
|
|
|
|
error (return 1).
|
|
|
|
|
2007-09-15 01:59:04 +02:00
|
|
|
--with-tree=<tree-ish>::
|
|
|
|
When using --error-unmatch to expand the user supplied
|
|
|
|
<file> (i.e. path pattern) arguments to paths, pretend
|
|
|
|
that paths which were removed in the index since the
|
|
|
|
named <tree-ish> are still present. Using this option
|
|
|
|
with `-s` or `-u` options does not make any sense.
|
|
|
|
|
2005-05-10 23:32:30 +02:00
|
|
|
-t::
|
2010-07-28 09:24:27 +02:00
|
|
|
This feature is semi-deprecated. For scripting purpose,
|
|
|
|
linkgit:git-status[1] `--porcelain` and
|
|
|
|
linkgit:git-diff-files[1] `--name-status` are almost always
|
|
|
|
superior alternatives, and users should look at
|
|
|
|
linkgit:git-status[1] `--short` or linkgit:git-diff[1]
|
|
|
|
`--name-status` for more user-friendly alternatives.
|
|
|
|
+
|
|
|
|
This option identifies the file status with the following tags (followed by
|
|
|
|
a space) at the start of each line:
|
|
|
|
|
2005-10-03 19:16:30 +02:00
|
|
|
H:: cached
|
2009-08-20 15:46:57 +02:00
|
|
|
S:: skip-worktree
|
2005-10-03 19:16:30 +02:00
|
|
|
M:: unmerged
|
|
|
|
R:: removed/deleted
|
2005-12-29 10:20:06 +01:00
|
|
|
C:: modified/changed
|
2005-10-03 19:16:30 +02:00
|
|
|
K:: to be killed
|
2006-02-14 06:52:10 +01:00
|
|
|
?:: other
|
2005-05-10 23:32:30 +02:00
|
|
|
|
2006-02-12 10:48:47 +01:00
|
|
|
-v::
|
|
|
|
Similar to `-t`, but use lowercase letters for files
|
2007-12-21 22:50:58 +01:00
|
|
|
that are marked as 'assume unchanged' (see
|
2007-12-29 07:20:38 +01:00
|
|
|
linkgit:git-update-index[1]).
|
2006-02-12 10:48:47 +01:00
|
|
|
|
2005-12-24 00:51:33 +01:00
|
|
|
--full-name::
|
|
|
|
When run from a subdirectory, the command usually
|
|
|
|
outputs paths relative to the current directory. This
|
|
|
|
option forces paths to be output relative to the project
|
|
|
|
top directory.
|
|
|
|
|
2006-03-07 20:59:17 +01:00
|
|
|
--abbrev[=<n>]::
|
|
|
|
Instead of showing the full 40-byte hexadecimal object
|
2009-01-12 21:02:07 +01:00
|
|
|
lines, show only a partial prefix.
|
2006-03-07 20:59:17 +01:00
|
|
|
Non default number of digits can be specified with --abbrev=<n>.
|
|
|
|
|
2010-07-31 00:35:59 +02:00
|
|
|
--debug::
|
|
|
|
After each line that describes a file, add more data about its
|
|
|
|
cache entry. This is intended to show as much information as
|
|
|
|
possible for manual inspection; the exact format may change at
|
|
|
|
any time.
|
|
|
|
|
2016-01-16 07:50:02 +01:00
|
|
|
--eol::
|
|
|
|
Show <eolinfo> and <eolattr> of files.
|
|
|
|
<eolinfo> is the file content identification used by Git when
|
|
|
|
the "text" attribute is "auto" (or not set and core.autocrlf is not false).
|
|
|
|
<eolinfo> is either "-text", "none", "lf", "crlf", "mixed" or "".
|
|
|
|
+
|
|
|
|
"" means the file is not a regular file, it is not in the index or
|
2016-03-03 19:43:51 +01:00
|
|
|
not accessible in the working tree.
|
2016-01-16 07:50:02 +01:00
|
|
|
+
|
|
|
|
<eolattr> is the attribute that is used when checking out or committing,
|
|
|
|
it is either "", "-text", "text", "text=auto", "text eol=lf", "text eol=crlf".
|
2016-08-25 17:52:57 +02:00
|
|
|
Since Git 2.10 "text=auto eol=lf" and "text=auto eol=crlf" are supported.
|
2016-01-16 07:50:02 +01:00
|
|
|
+
|
|
|
|
Both the <eolinfo> in the index ("i/<eolinfo>")
|
|
|
|
and in the working tree ("w/<eolinfo>") are shown for regular files,
|
|
|
|
followed by the ("attr/<eolattr>").
|
|
|
|
|
2006-05-05 21:05:24 +02:00
|
|
|
\--::
|
2005-10-02 17:33:38 +02:00
|
|
|
Do not interpret any more arguments as options.
|
|
|
|
|
|
|
|
<file>::
|
|
|
|
Files to show. If no files are given all files which match the other
|
|
|
|
specified criteria are shown.
|
|
|
|
|
2005-05-10 23:32:30 +02:00
|
|
|
Output
|
|
|
|
------
|
2016-06-28 13:40:11 +02:00
|
|
|
'git ls-files' just outputs the filenames unless `--stage` is specified in
|
2005-05-10 23:32:30 +02:00
|
|
|
which case it outputs:
|
|
|
|
|
|
|
|
[<tag> ]<mode> <object> <stage> <file>
|
|
|
|
|
2016-01-16 07:50:02 +01:00
|
|
|
'git ls-files --eol' will show
|
|
|
|
i/<eolinfo><SPACES>w/<eolinfo><SPACES>attr/<eolattr><SPACE*><TAB><file>
|
|
|
|
|
2010-01-10 00:33:00 +01:00
|
|
|
'git ls-files --unmerged' and 'git ls-files --stage' can be used to examine
|
2005-05-10 23:32:30 +02:00
|
|
|
detailed information on unmerged paths.
|
|
|
|
|
2013-04-15 19:49:04 +02:00
|
|
|
For an unmerged path, instead of recording a single mode/SHA-1 pair,
|
2007-05-26 00:37:40 +02:00
|
|
|
the index records up to three such pairs; one from tree O in stage
|
2005-05-10 23:32:30 +02:00
|
|
|
1, A in stage 2, and B in stage 3. This information can be used by
|
2005-08-05 17:05:02 +02:00
|
|
|
the user (or the porcelain) to see what should eventually be recorded at the
|
2008-06-30 20:56:34 +02:00
|
|
|
path. (see linkgit:git-read-tree[1] for more information on state)
|
2005-05-10 23:32:30 +02:00
|
|
|
|
2005-10-15 06:56:46 +02:00
|
|
|
When `-z` option is not used, TAB, LF, and backslash characters
|
|
|
|
in pathnames are represented as `\t`, `\n`, and `\\`,
|
|
|
|
respectively.
|
|
|
|
|
2005-07-25 00:47:26 +02:00
|
|
|
|
|
|
|
Exclude Patterns
|
|
|
|
----------------
|
|
|
|
|
2010-01-10 00:33:00 +01:00
|
|
|
'git ls-files' can use a list of "exclude patterns" when
|
2005-07-25 00:47:26 +02:00
|
|
|
traversing the directory tree and finding files to show when the
|
2007-12-29 07:20:38 +01:00
|
|
|
flags --others or --ignored are specified. linkgit:gitignore[5]
|
2007-06-02 19:08:54 +02:00
|
|
|
specifies the format of exclude patterns.
|
2005-07-25 00:47:26 +02:00
|
|
|
|
2007-06-02 19:08:54 +02:00
|
|
|
These exclude patterns come from these places, in order:
|
2005-07-25 00:47:26 +02:00
|
|
|
|
2014-05-21 20:52:26 +02:00
|
|
|
1. The command-line flag --exclude=<pattern> specifies a
|
2007-06-02 19:08:54 +02:00
|
|
|
single pattern. Patterns are ordered in the same order
|
|
|
|
they appear in the command line.
|
2005-07-25 00:47:26 +02:00
|
|
|
|
2014-05-21 20:52:26 +02:00
|
|
|
2. The command-line flag --exclude-from=<file> specifies a
|
2007-06-02 19:08:54 +02:00
|
|
|
file containing a list of patterns. Patterns are ordered
|
|
|
|
in the same order they appear in the file.
|
2005-07-25 00:47:26 +02:00
|
|
|
|
2014-05-21 20:52:26 +02:00
|
|
|
3. The command-line flag --exclude-per-directory=<name> specifies
|
2010-01-10 00:33:00 +01:00
|
|
|
a name of the file in each directory 'git ls-files'
|
2007-06-02 19:08:54 +02:00
|
|
|
examines, normally `.gitignore`. Files in deeper
|
|
|
|
directories take precedence. Patterns are ordered in the
|
|
|
|
same order they appear in the files.
|
2005-07-25 00:47:26 +02:00
|
|
|
|
|
|
|
A pattern specified on the command line with --exclude or read
|
|
|
|
from the file specified with --exclude-from is relative to the
|
|
|
|
top of the directory tree. A pattern read from a file specified
|
|
|
|
by --exclude-per-directory is relative to the directory that the
|
|
|
|
pattern file appears in.
|
|
|
|
|
2008-05-29 01:55:27 +02:00
|
|
|
SEE ALSO
|
2005-05-10 23:32:38 +02:00
|
|
|
--------
|
2007-12-29 07:20:38 +01:00
|
|
|
linkgit:git-read-tree[1], linkgit:gitignore[5]
|
2005-05-10 23:32:30 +02:00
|
|
|
|
|
|
|
GIT
|
|
|
|
---
|
2008-06-06 09:07:32 +02:00
|
|
|
Part of the linkgit:git[1] suite
|