Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 1 | git-ls-files(1) |
| 2 | =============== |
| 3 | |
| 4 | NAME |
| 5 | ---- |
Junio C Hamano | 7c73c66 | 2007-01-19 00:37:50 | [diff] [blame] | 6 | git-ls-files - Show information about files in the index and the working tree |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 7 | |
| 8 | |
| 9 | SYNOPSIS |
| 10 | -------- |
Junio C Hamano | 7e9f6b7 | 2006-02-22 10:44:55 | [diff] [blame] | 11 | [verse] |
Junio C Hamano | fce7c7e | 2008-07-02 03:06:38 | [diff] [blame] | 12 | 'git ls-files' [-z] [-t] [-v] |
Junio C Hamano | 2db3e75 | 2010-09-03 21:33:06 | [diff] [blame] | 13 | (--[cached|deleted|others|ignored|stage|unmerged|killed|modified])* |
| 14 | (-[c|d|o|i|s|u|k|m])* |
Junio C Hamano | ffe10ca | 2016-02-04 00:44:23 | [diff] [blame] | 15 | [--eol] |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 16 | [-x <pattern>|--exclude=<pattern>] |
| 17 | [-X <file>|--exclude-from=<file>] |
Junio C Hamano | 5c3957e | 2006-03-28 00:28:01 | [diff] [blame] | 18 | [--exclude-per-directory=<file>] |
Junio C Hamano | ff97979 | 2007-11-16 10:11:30 | [diff] [blame] | 19 | [--exclude-standard] |
Junio C Hamano | 58155b4 | 2007-09-15 07:46:14 | [diff] [blame] | 20 | [--error-unmatch] [--with-tree=<tree-ish>] |
Junio C Hamano | d2179ef | 2010-10-22 04:12:17 | [diff] [blame] | 21 | [--full-name] [--abbrev] [--] [<file>...] |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 22 | |
| 23 | DESCRIPTION |
| 24 | ----------- |
| 25 | This merges the file listing in the directory cache index with the |
| 26 | actual working directory list, and shows different combinations of the |
| 27 | two. |
| 28 | |
| 29 | One or more of the options below may be used to determine the files |
| 30 | shown: |
| 31 | |
| 32 | OPTIONS |
| 33 | ------- |
Junio C Hamano | eb41599 | 2008-06-08 22:49:47 | [diff] [blame] | 34 | -c:: |
| 35 | --cached:: |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 36 | Show cached files in the output (default) |
| 37 | |
Junio C Hamano | eb41599 | 2008-06-08 22:49:47 | [diff] [blame] | 38 | -d:: |
| 39 | --deleted:: |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 40 | Show deleted files in the output |
| 41 | |
Junio C Hamano | eb41599 | 2008-06-08 22:49:47 | [diff] [blame] | 42 | -m:: |
| 43 | --modified:: |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 44 | Show modified files in the output |
| 45 | |
Junio C Hamano | eb41599 | 2008-06-08 22:49:47 | [diff] [blame] | 46 | -o:: |
| 47 | --others:: |
Junio C Hamano | 31cca16 | 2009-08-07 05:40:01 | [diff] [blame] | 48 | Show other (i.e. untracked) files in the output |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 49 | |
Junio C Hamano | eb41599 | 2008-06-08 22:49:47 | [diff] [blame] | 50 | -i:: |
| 51 | --ignored:: |
Junio C Hamano | 446ed77 | 2009-11-10 22:02:20 | [diff] [blame] | 52 | Show only ignored files in the output. When showing files in the |
| 53 | index, print only those matched by an exclude pattern. When |
| 54 | showing "other" files, show only those matched by an exclude |
| 55 | pattern. |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 56 | |
Junio C Hamano | eb41599 | 2008-06-08 22:49:47 | [diff] [blame] | 57 | -s:: |
| 58 | --stage:: |
Junio C Hamano | 90ccff3 | 2008-07-29 08:17:24 | [diff] [blame] | 59 | Show staged contents' object name, mode bits and stage number in the output. |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 60 | |
Junio C Hamano | a6331a8 | 2006-01-22 07:50:33 | [diff] [blame] | 61 | --directory:: |
| 62 | If a whole directory is classified as "other", show just its |
| 63 | name (with a trailing slash) and not its whole contents. |
| 64 | |
Junio C Hamano | f02e09f | 2006-03-27 07:51:03 | [diff] [blame] | 65 | --no-empty-directory:: |
| 66 | Do not list empty directories. Has no effect without --directory. |
| 67 | |
Junio C Hamano | eb41599 | 2008-06-08 22:49:47 | [diff] [blame] | 68 | -u:: |
| 69 | --unmerged:: |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 70 | Show unmerged files in the output (forces --stage) |
| 71 | |
Junio C Hamano | eb41599 | 2008-06-08 22:49:47 | [diff] [blame] | 72 | -k:: |
| 73 | --killed:: |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 74 | Show files on the filesystem that need to be removed due |
| 75 | to file/directory conflicts for checkout-index to |
| 76 | succeed. |
| 77 | |
| 78 | -z:: |
| 79 | \0 line termination on output. |
| 80 | |
Junio C Hamano | eb41599 | 2008-06-08 22:49:47 | [diff] [blame] | 81 | -x <pattern>:: |
| 82 | --exclude=<pattern>:: |
Junio C Hamano | ac752fa | 2010-09-19 00:01:00 | [diff] [blame] | 83 | Skip untracked files matching pattern. |
| 84 | Note that pattern is a shell wildcard pattern. See EXCLUDE PATTERNS |
| 85 | below for more information. |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 86 | |
Junio C Hamano | eb41599 | 2008-06-08 22:49:47 | [diff] [blame] | 87 | -X <file>:: |
| 88 | --exclude-from=<file>:: |
Junio C Hamano | ac752fa | 2010-09-19 00:01:00 | [diff] [blame] | 89 | Read exclude patterns from <file>; 1 per line. |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 90 | |
| 91 | --exclude-per-directory=<file>:: |
Junio C Hamano | ac752fa | 2010-09-19 00:01:00 | [diff] [blame] | 92 | Read additional exclude patterns that apply only to the |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 93 | directory and its subdirectories in <file>. |
| 94 | |
Junio C Hamano | ff97979 | 2007-11-16 10:11:30 | [diff] [blame] | 95 | --exclude-standard:: |
Junio C Hamano | 076ffcc | 2013-02-06 05:13:21 | [diff] [blame] | 96 | Add the standard Git exclusions: .git/info/exclude, .gitignore |
Junio C Hamano | ff97979 | 2007-11-16 10:11:30 | [diff] [blame] | 97 | in each directory, and the user's global exclusion file. |
| 98 | |
Junio C Hamano | 7e9f6b7 | 2006-02-22 10:44:55 | [diff] [blame] | 99 | --error-unmatch:: |
| 100 | If any <file> does not appear in the index, treat this as an |
| 101 | error (return 1). |
| 102 | |
Junio C Hamano | 58155b4 | 2007-09-15 07:46:14 | [diff] [blame] | 103 | --with-tree=<tree-ish>:: |
| 104 | When using --error-unmatch to expand the user supplied |
| 105 | <file> (i.e. path pattern) arguments to paths, pretend |
| 106 | that paths which were removed in the index since the |
| 107 | named <tree-ish> are still present. Using this option |
| 108 | with `-s` or `-u` options does not make any sense. |
| 109 | |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 110 | -t:: |
Junio C Hamano | a978876 | 2010-08-03 15:15:54 | [diff] [blame] | 111 | This feature is semi-deprecated. For scripting purpose, |
| 112 | linkgit:git-status[1] `--porcelain` and |
| 113 | linkgit:git-diff-files[1] `--name-status` are almost always |
| 114 | superior alternatives, and users should look at |
| 115 | linkgit:git-status[1] `--short` or linkgit:git-diff[1] |
| 116 | `--name-status` for more user-friendly alternatives. |
| 117 | + |
| 118 | This option identifies the file status with the following tags (followed by |
| 119 | a space) at the start of each line: |
| 120 | |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 121 | H:: cached |
Junio C Hamano | 3c8d670 | 2010-01-13 23:09:03 | [diff] [blame] | 122 | S:: skip-worktree |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 123 | M:: unmerged |
| 124 | R:: removed/deleted |
Junio C Hamano | 235a91e | 2006-01-07 01:13:58 | [diff] [blame] | 125 | C:: modified/changed |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 126 | K:: to be killed |
Junio C Hamano | 6697ac5 | 2006-02-14 08:00:23 | [diff] [blame] | 127 | ?:: other |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 128 | |
Junio C Hamano | 7e9f6b7 | 2006-02-22 10:44:55 | [diff] [blame] | 129 | -v:: |
| 130 | Similar to `-t`, but use lowercase letters for files |
Junio C Hamano | f556fc2 | 2007-12-23 08:16:38 | [diff] [blame] | 131 | that are marked as 'assume unchanged' (see |
Junio C Hamano | 35738e8 | 2008-01-07 07:55:46 | [diff] [blame] | 132 | linkgit:git-update-index[1]). |
Junio C Hamano | 7e9f6b7 | 2006-02-22 10:44:55 | [diff] [blame] | 133 | |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 134 | --full-name:: |
| 135 | When run from a subdirectory, the command usually |
| 136 | outputs paths relative to the current directory. This |
| 137 | option forces paths to be output relative to the project |
| 138 | top directory. |
| 139 | |
Junio C Hamano | 5c3957e | 2006-03-28 00:28:01 | [diff] [blame] | 140 | --abbrev[=<n>]:: |
| 141 | Instead of showing the full 40-byte hexadecimal object |
Junio C Hamano | 6efe302 | 2009-01-13 16:47:56 | [diff] [blame] | 142 | lines, show only a partial prefix. |
Junio C Hamano | 5c3957e | 2006-03-28 00:28:01 | [diff] [blame] | 143 | Non default number of digits can be specified with --abbrev=<n>. |
| 144 | |
Junio C Hamano | a978876 | 2010-08-03 15:15:54 | [diff] [blame] | 145 | --debug:: |
| 146 | After each line that describes a file, add more data about its |
| 147 | cache entry. This is intended to show as much information as |
| 148 | possible for manual inspection; the exact format may change at |
| 149 | any time. |
| 150 | |
Junio C Hamano | ffe10ca | 2016-02-04 00:44:23 | [diff] [blame] | 151 | --eol:: |
| 152 | Show <eolinfo> and <eolattr> of files. |
| 153 | <eolinfo> is the file content identification used by Git when |
| 154 | the "text" attribute is "auto" (or not set and core.autocrlf is not false). |
| 155 | <eolinfo> is either "-text", "none", "lf", "crlf", "mixed" or "". |
| 156 | + |
| 157 | "" means the file is not a regular file, it is not in the index or |
Junio C Hamano | 03a41f3 | 2016-03-04 22:22:15 | [diff] [blame^] | 158 | not accessible in the working tree. |
Junio C Hamano | ffe10ca | 2016-02-04 00:44:23 | [diff] [blame] | 159 | + |
| 160 | <eolattr> is the attribute that is used when checking out or committing, |
| 161 | it is either "", "-text", "text", "text=auto", "text eol=lf", "text eol=crlf". |
| 162 | Note: Currently Git does not support "text=auto eol=lf" or "text=auto eol=crlf", |
| 163 | that may change in the future. |
| 164 | + |
| 165 | Both the <eolinfo> in the index ("i/<eolinfo>") |
| 166 | and in the working tree ("w/<eolinfo>") are shown for regular files, |
| 167 | followed by the ("attr/<eolattr>"). |
| 168 | |
Junio C Hamano | 1bb569e | 2006-05-05 23:14:25 | [diff] [blame] | 169 | \--:: |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 170 | Do not interpret any more arguments as options. |
| 171 | |
| 172 | <file>:: |
| 173 | Files to show. If no files are given all files which match the other |
| 174 | specified criteria are shown. |
| 175 | |
| 176 | Output |
| 177 | ------ |
Junio C Hamano | d0d892c | 2010-01-24 20:06:29 | [diff] [blame] | 178 | 'git ls-files' just outputs the filenames unless '--stage' is specified in |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 179 | which case it outputs: |
| 180 | |
| 181 | [<tag> ]<mode> <object> <stage> <file> |
| 182 | |
Junio C Hamano | ffe10ca | 2016-02-04 00:44:23 | [diff] [blame] | 183 | 'git ls-files --eol' will show |
| 184 | i/<eolinfo><SPACES>w/<eolinfo><SPACES>attr/<eolattr><SPACE*><TAB><file> |
| 185 | |
Junio C Hamano | 1aa40d2 | 2010-01-21 17:46:43 | [diff] [blame] | 186 | 'git ls-files --unmerged' and 'git ls-files --stage' can be used to examine |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 187 | detailed information on unmerged paths. |
| 188 | |
Junio C Hamano | e3f080d | 2013-04-22 02:27:13 | [diff] [blame] | 189 | For an unmerged path, instead of recording a single mode/SHA-1 pair, |
Junio C Hamano | 3646098 | 2007-05-27 04:29:12 | [diff] [blame] | 190 | the index records up to three such pairs; one from tree O in stage |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 191 | 1, A in stage 2, and B in stage 3. This information can be used by |
| 192 | the user (or the porcelain) to see what should eventually be recorded at the |
Junio C Hamano | fce7c7e | 2008-07-02 03:06:38 | [diff] [blame] | 193 | path. (see linkgit:git-read-tree[1] for more information on state) |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 194 | |
| 195 | When `-z` option is not used, TAB, LF, and backslash characters |
| 196 | in pathnames are represented as `\t`, `\n`, and `\\`, |
| 197 | respectively. |
| 198 | |
| 199 | |
| 200 | Exclude Patterns |
| 201 | ---------------- |
| 202 | |
Junio C Hamano | 1aa40d2 | 2010-01-21 17:46:43 | [diff] [blame] | 203 | 'git ls-files' can use a list of "exclude patterns" when |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 204 | traversing the directory tree and finding files to show when the |
Junio C Hamano | 35738e8 | 2008-01-07 07:55:46 | [diff] [blame] | 205 | flags --others or --ignored are specified. linkgit:gitignore[5] |
Junio C Hamano | 679d22d | 2007-06-02 21:13:44 | [diff] [blame] | 206 | specifies the format of exclude patterns. |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 207 | |
Junio C Hamano | 679d22d | 2007-06-02 21:13:44 | [diff] [blame] | 208 | These exclude patterns come from these places, in order: |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 209 | |
Junio C Hamano | e1aeb5e | 2014-06-06 19:16:29 | [diff] [blame] | 210 | 1. The command-line flag --exclude=<pattern> specifies a |
Junio C Hamano | 679d22d | 2007-06-02 21:13:44 | [diff] [blame] | 211 | single pattern. Patterns are ordered in the same order |
| 212 | they appear in the command line. |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 213 | |
Junio C Hamano | e1aeb5e | 2014-06-06 19:16:29 | [diff] [blame] | 214 | 2. The command-line flag --exclude-from=<file> specifies a |
Junio C Hamano | 679d22d | 2007-06-02 21:13:44 | [diff] [blame] | 215 | file containing a list of patterns. Patterns are ordered |
| 216 | in the same order they appear in the file. |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 217 | |
Junio C Hamano | e1aeb5e | 2014-06-06 19:16:29 | [diff] [blame] | 218 | 3. The command-line flag --exclude-per-directory=<name> specifies |
Junio C Hamano | 1aa40d2 | 2010-01-21 17:46:43 | [diff] [blame] | 219 | a name of the file in each directory 'git ls-files' |
Junio C Hamano | 679d22d | 2007-06-02 21:13:44 | [diff] [blame] | 220 | examines, normally `.gitignore`. Files in deeper |
| 221 | directories take precedence. Patterns are ordered in the |
| 222 | same order they appear in the files. |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 223 | |
| 224 | A pattern specified on the command line with --exclude or read |
| 225 | from the file specified with --exclude-from is relative to the |
| 226 | top of the directory tree. A pattern read from a file specified |
| 227 | by --exclude-per-directory is relative to the directory that the |
| 228 | pattern file appears in. |
| 229 | |
Junio C Hamano | 9049d91 | 2008-05-29 02:09:50 | [diff] [blame] | 230 | SEE ALSO |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 231 | -------- |
Junio C Hamano | 35738e8 | 2008-01-07 07:55:46 | [diff] [blame] | 232 | linkgit:git-read-tree[1], linkgit:gitignore[5] |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 233 | |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 234 | GIT |
| 235 | --- |
Junio C Hamano | f7c042d | 2008-06-06 22:50:53 | [diff] [blame] | 236 | Part of the linkgit:git[1] suite |