2005-05-10 21:32:30 +00:00
|
|
|
git-ls-files(1)
|
|
|
|
===============
|
|
|
|
|
|
|
|
NAME
|
|
|
|
----
|
2007-01-18 23:53:37 +00:00
|
|
|
git-ls-files - Show information about files in the index and the working tree
|
2005-05-10 21:32:30 +00:00
|
|
|
|
|
|
|
|
|
|
|
SYNOPSIS
|
|
|
|
--------
|
2006-02-12 09:48:47 +00:00
|
|
|
[verse]
|
2017-09-22 16:35:41 +00:00
|
|
|
'git ls-files' [-z] [-t] [-v] [-f]
|
2010-08-20 10:31:58 +00:00
|
|
|
(--[cached|deleted|others|ignored|stage|unmerged|killed|modified])*
|
|
|
|
(-[c|d|o|i|s|u|k|m])*
|
2016-01-16 06:50:02 +00:00
|
|
|
[--eol]
|
2021-01-23 10:20:10 +00:00
|
|
|
[--deduplicate]
|
2005-05-10 21:32:30 +00:00
|
|
|
[-x <pattern>|--exclude=<pattern>]
|
|
|
|
[-X <file>|--exclude-from=<file>]
|
2006-03-07 19:59:17 +00:00
|
|
|
[--exclude-per-directory=<file>]
|
2007-11-15 07:04:30 +00:00
|
|
|
[--exclude-standard]
|
2007-09-14 23:59:04 +00:00
|
|
|
[--error-unmatch] [--with-tree=<tree-ish>]
|
2016-10-07 18:18:49 +00:00
|
|
|
[--full-name] [--recurse-submodules]
|
2020-11-04 22:01:37 +00:00
|
|
|
[--abbrev[=<n>]] [--] [<file>...]
|
2005-05-10 21:32:30 +00:00
|
|
|
|
|
|
|
DESCRIPTION
|
|
|
|
-----------
|
2021-01-08 16:54:56 +00:00
|
|
|
This merges the file listing in the index with the actual working
|
|
|
|
directory list, and shows different combinations of the two.
|
2005-05-10 21:32:30 +00:00
|
|
|
|
|
|
|
One or more of the options below may be used to determine the files
|
|
|
|
shown:
|
|
|
|
|
|
|
|
OPTIONS
|
|
|
|
-------
|
2008-06-08 01:36:09 +00:00
|
|
|
-c::
|
|
|
|
--cached::
|
2005-05-10 21:32:30 +00:00
|
|
|
Show cached files in the output (default)
|
|
|
|
|
2008-06-08 01:36:09 +00:00
|
|
|
-d::
|
|
|
|
--deleted::
|
2005-05-10 21:32:30 +00:00
|
|
|
Show deleted files in the output
|
|
|
|
|
2008-06-08 01:36:09 +00:00
|
|
|
-m::
|
|
|
|
--modified::
|
2005-09-19 22:11:15 +00:00
|
|
|
Show modified files in the output
|
|
|
|
|
2008-06-08 01:36:09 +00:00
|
|
|
-o::
|
|
|
|
--others::
|
2009-08-06 15:11:48 +00:00
|
|
|
Show other (i.e. untracked) files in the output
|
2005-05-10 21:32:30 +00:00
|
|
|
|
2008-06-08 01:36:09 +00: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 19:05:52 +00: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
|
2018-05-03 18:48:26 +00:00
|
|
|
pattern. Standard ignore rules are not automatically activated,
|
|
|
|
therefore at least one of the `--exclude*` options is required.
|
2005-05-10 21:32:30 +00:00
|
|
|
|
2008-06-08 01:36:09 +00:00
|
|
|
-s::
|
|
|
|
--stage::
|
2017-04-01 07:08:25 +00:00
|
|
|
Show staged contents' mode bits, object name and stage number in the output.
|
2005-05-10 21:32:30 +00:00
|
|
|
|
2006-01-22 00:22:30 +00: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 14:59:52 +00:00
|
|
|
--no-empty-directory::
|
|
|
|
Do not list empty directories. Has no effect without --directory.
|
|
|
|
|
2008-06-08 01:36:09 +00:00
|
|
|
-u::
|
|
|
|
--unmerged::
|
2005-05-10 21:32:30 +00:00
|
|
|
Show unmerged files in the output (forces --stage)
|
|
|
|
|
2008-06-08 01:36:09 +00:00
|
|
|
-k::
|
|
|
|
--killed::
|
2005-05-13 00:17:54 +00:00
|
|
|
Show files on the filesystem that need to be removed due
|
2005-10-07 21:05:03 +00:00
|
|
|
to file/directory conflicts for checkout-index to
|
2005-05-13 00:17:54 +00:00
|
|
|
succeed.
|
|
|
|
|
2005-05-10 21:32:30 +00:00
|
|
|
-z::
|
2017-03-02 19:03:52 +00:00
|
|
|
\0 line termination on output and do not quote filenames.
|
|
|
|
See OUTPUT below for more information.
|
2005-05-10 21:32:30 +00:00
|
|
|
|
2021-01-23 10:20:10 +00:00
|
|
|
--deduplicate::
|
|
|
|
When only filenames are shown, suppress duplicates that may
|
|
|
|
come from having multiple stages during a merge, or giving
|
|
|
|
`--deleted` and `--modified` option at the same time.
|
|
|
|
When any of the `-t`, `--unmerged`, or `--stage` option is
|
|
|
|
in use, this option has no effect.
|
|
|
|
|
2008-06-08 01:36:09 +00:00
|
|
|
-x <pattern>::
|
|
|
|
--exclude=<pattern>::
|
2010-09-16 00:34:20 +00:00
|
|
|
Skip untracked files matching pattern.
|
2010-09-15 23:56:48 +00:00
|
|
|
Note that pattern is a shell wildcard pattern. See EXCLUDE PATTERNS
|
|
|
|
below for more information.
|
2005-05-10 21:32:30 +00:00
|
|
|
|
2008-06-08 01:36:09 +00:00
|
|
|
-X <file>::
|
|
|
|
--exclude-from=<file>::
|
2010-09-16 00:34:20 +00:00
|
|
|
Read exclude patterns from <file>; 1 per line.
|
2005-07-24 22:47:26 +00:00
|
|
|
|
|
|
|
--exclude-per-directory=<file>::
|
2010-09-16 00:34:20 +00:00
|
|
|
Read additional exclude patterns that apply only to the
|
2005-07-24 22:47:26 +00:00
|
|
|
directory and its subdirectories in <file>.
|
2005-05-10 21:32:30 +00:00
|
|
|
|
2007-11-15 07:04:30 +00:00
|
|
|
--exclude-standard::
|
2013-01-21 19:17:53 +00:00
|
|
|
Add the standard Git exclusions: .git/info/exclude, .gitignore
|
2007-11-15 07:04:30 +00:00
|
|
|
in each directory, and the user's global exclusion file.
|
|
|
|
|
2006-02-21 20:48:30 +00:00
|
|
|
--error-unmatch::
|
|
|
|
If any <file> does not appear in the index, treat this as an
|
|
|
|
error (return 1).
|
|
|
|
|
2007-09-14 23:59:04 +00: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 21:32:30 +00:00
|
|
|
-t::
|
2010-07-28 07:24:27 +00: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.
|
|
|
|
+
|
2019-04-22 15:15:41 +00:00
|
|
|
--
|
2010-07-28 07:24:27 +00:00
|
|
|
This option identifies the file status with the following tags (followed by
|
|
|
|
a space) at the start of each line:
|
|
|
|
|
2005-10-03 17:16:30 +00:00
|
|
|
H:: cached
|
2009-08-20 13:46:57 +00:00
|
|
|
S:: skip-worktree
|
2005-10-03 17:16:30 +00:00
|
|
|
M:: unmerged
|
|
|
|
R:: removed/deleted
|
2005-12-29 09:20:06 +00:00
|
|
|
C:: modified/changed
|
2005-10-03 17:16:30 +00:00
|
|
|
K:: to be killed
|
2006-02-14 05:52:10 +00:00
|
|
|
?:: other
|
2019-04-22 15:15:41 +00:00
|
|
|
--
|
2005-05-10 21:32:30 +00:00
|
|
|
|
2006-02-12 09:48:47 +00:00
|
|
|
-v::
|
|
|
|
Similar to `-t`, but use lowercase letters for files
|
2007-12-21 21:50:58 +00:00
|
|
|
that are marked as 'assume unchanged' (see
|
2007-12-29 06:20:38 +00:00
|
|
|
linkgit:git-update-index[1]).
|
2006-02-12 09:48:47 +00:00
|
|
|
|
2017-09-22 16:35:41 +00:00
|
|
|
-f::
|
|
|
|
Similar to `-t`, but use lowercase letters for files
|
|
|
|
that are marked as 'fsmonitor valid' (see
|
|
|
|
linkgit:git-update-index[1]).
|
|
|
|
|
2005-12-23 23:51:33 +00: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.
|
|
|
|
|
2016-10-07 18:18:49 +00:00
|
|
|
--recurse-submodules::
|
doc: --recurse-submodules mostly applies to active submodules
The documentation refers to "initialized" or "populated" submodules,
to explain which submodules are affected by '--recurse-submodules', but
the real terminology here is 'active' submodules. Update the
documentation accordingly.
Some terminology:
- Active is defined in gitsubmodules(7), it only involves the
configuration variables 'submodule.active', 'submodule.<name>.active'
and 'submodule.<name>.url'. The function
submodule.c::is_submodule_active checks that a submodule is active.
- Populated means that the submodule's working tree is present (and the
gitfile correctly points to the submodule repository), i.e. either the
superproject was cloned with ` --recurse-submodules`, or the user ran
`git submodule update --init`, or `git submodule init [<path>]` and
`git submodule update [<path>]` separately which populated the
submodule working tree. This does not involve the 3 configuration
variables above.
- Initialized (at least in the context of the man pages involved in this
patch) means both "populated" and "active" as defined above, i.e. what
`git submodule update --init` does.
The --recurse-submodules option mostly affects active submodules. An
exception is `git fetch` where the option affects populated submodules.
As a consequence, in `git pull --recurse-submodules` the fetch affects
populated submodules, but the resulting working tree update only affects
active submodules.
In the documentation of `git-pull`, let's distinguish between the
fetching part which affects populated submodules, and the updating of
worktrees, which only affects active submodules.
Signed-off-by: Damien Robert <damien.olivier.robert+git@gmail.com>
Helped-by: Philippe Blain <levraiphilippeblain@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2020-04-06 13:57:09 +00:00
|
|
|
Recursively calls ls-files on each active submodule in the repository.
|
2016-10-07 18:18:51 +00:00
|
|
|
Currently there is only support for the --cached mode.
|
2016-10-07 18:18:49 +00:00
|
|
|
|
2006-03-07 19:59:17 +00:00
|
|
|
--abbrev[=<n>]::
|
|
|
|
Instead of showing the full 40-byte hexadecimal object
|
2020-11-04 22:01:37 +00:00
|
|
|
lines, show the shortest prefix that is at least '<n>'
|
|
|
|
hexdigits long that uniquely refers the object.
|
2006-03-07 19:59:17 +00:00
|
|
|
Non default number of digits can be specified with --abbrev=<n>.
|
|
|
|
|
2010-07-30 22:35:59 +00: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 06:50:02 +00: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 18:43:51 +00:00
|
|
|
not accessible in the working tree.
|
2016-01-16 06:50:02 +00: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 15:52:57 +00:00
|
|
|
Since Git 2.10 "text=auto eol=lf" and "text=auto eol=crlf" are supported.
|
2016-01-16 06:50:02 +00: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 19:05:24 +00:00
|
|
|
\--::
|
2005-10-02 15:33:38 +00: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.
|
|
|
|
|
2018-04-30 15:35:33 +00:00
|
|
|
OUTPUT
|
2005-05-10 21:32:30 +00:00
|
|
|
------
|
2016-06-28 11:40:11 +00:00
|
|
|
'git ls-files' just outputs the filenames unless `--stage` is specified in
|
2005-05-10 21:32:30 +00:00
|
|
|
which case it outputs:
|
|
|
|
|
|
|
|
[<tag> ]<mode> <object> <stage> <file>
|
|
|
|
|
2016-01-16 06:50:02 +00:00
|
|
|
'git ls-files --eol' will show
|
|
|
|
i/<eolinfo><SPACES>w/<eolinfo><SPACES>attr/<eolattr><SPACE*><TAB><file>
|
|
|
|
|
2010-01-09 23:33:00 +00:00
|
|
|
'git ls-files --unmerged' and 'git ls-files --stage' can be used to examine
|
2005-05-10 21:32:30 +00:00
|
|
|
detailed information on unmerged paths.
|
|
|
|
|
2013-04-15 17:49:04 +00:00
|
|
|
For an unmerged path, instead of recording a single mode/SHA-1 pair,
|
2007-05-25 22:37:40 +00:00
|
|
|
the index records up to three such pairs; one from tree O in stage
|
2005-05-10 21:32:30 +00:00
|
|
|
1, A in stage 2, and B in stage 3. This information can be used by
|
2005-08-05 15:05:02 +00:00
|
|
|
the user (or the porcelain) to see what should eventually be recorded at the
|
2008-06-30 18:56:34 +00:00
|
|
|
path. (see linkgit:git-read-tree[1] for more information on state)
|
2005-05-10 21:32:30 +00:00
|
|
|
|
2017-03-02 19:03:52 +00:00
|
|
|
Without the `-z` option, pathnames with "unusual" characters are
|
|
|
|
quoted as explained for the configuration variable `core.quotePath`
|
|
|
|
(see linkgit:git-config[1]). Using `-z` the filename is output
|
|
|
|
verbatim and the line is terminated by a NUL byte.
|
2005-10-15 04:56:46 +00:00
|
|
|
|
2005-07-24 22:47:26 +00:00
|
|
|
|
2018-04-30 15:35:33 +00:00
|
|
|
EXCLUDE PATTERNS
|
2005-07-24 22:47:26 +00:00
|
|
|
----------------
|
|
|
|
|
2010-01-09 23:33:00 +00:00
|
|
|
'git ls-files' can use a list of "exclude patterns" when
|
2005-07-24 22:47:26 +00:00
|
|
|
traversing the directory tree and finding files to show when the
|
2007-12-29 06:20:38 +00:00
|
|
|
flags --others or --ignored are specified. linkgit:gitignore[5]
|
2007-06-02 17:08:54 +00:00
|
|
|
specifies the format of exclude patterns.
|
2005-07-24 22:47:26 +00:00
|
|
|
|
2007-06-02 17:08:54 +00:00
|
|
|
These exclude patterns come from these places, in order:
|
2005-07-24 22:47:26 +00:00
|
|
|
|
2014-05-21 18:52:26 +00:00
|
|
|
1. The command-line flag --exclude=<pattern> specifies a
|
2007-06-02 17:08:54 +00:00
|
|
|
single pattern. Patterns are ordered in the same order
|
|
|
|
they appear in the command line.
|
2005-07-24 22:47:26 +00:00
|
|
|
|
2014-05-21 18:52:26 +00:00
|
|
|
2. The command-line flag --exclude-from=<file> specifies a
|
2007-06-02 17:08:54 +00:00
|
|
|
file containing a list of patterns. Patterns are ordered
|
|
|
|
in the same order they appear in the file.
|
2005-07-24 22:47:26 +00:00
|
|
|
|
2014-05-21 18:52:26 +00:00
|
|
|
3. The command-line flag --exclude-per-directory=<name> specifies
|
2010-01-09 23:33:00 +00:00
|
|
|
a name of the file in each directory 'git ls-files'
|
2007-06-02 17:08:54 +00:00
|
|
|
examines, normally `.gitignore`. Files in deeper
|
|
|
|
directories take precedence. Patterns are ordered in the
|
|
|
|
same order they appear in the files.
|
2005-07-24 22:47:26 +00: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-28 23:55:27 +00:00
|
|
|
SEE ALSO
|
2005-05-10 21:32:38 +00:00
|
|
|
--------
|
2007-12-29 06:20:38 +00:00
|
|
|
linkgit:git-read-tree[1], linkgit:gitignore[5]
|
2005-05-10 21:32:30 +00:00
|
|
|
|
|
|
|
GIT
|
|
|
|
---
|
2008-06-06 07:07:32 +00:00
|
|
|
Part of the linkgit:git[1] suite
|