David Greaves | 2cf565c | 2005-05-10 22:32:30 +0100 | [diff] [blame] | 1 | git-ls-files(1) |
| 2 | =============== |
David Greaves | 2cf565c | 2005-05-10 22:32:30 +0100 | [diff] [blame] | 3 | |
| 4 | NAME |
| 5 | ---- |
Junio C Hamano | c3f0baa | 2007-01-18 15:53:37 -0800 | [diff] [blame] | 6 | git-ls-files - Show information about files in the index and the working tree |
David Greaves | 2cf565c | 2005-05-10 22:32:30 +0100 | [diff] [blame] | 7 | |
| 8 | |
| 9 | SYNOPSIS |
| 10 | -------- |
Junio C Hamano | f9666ad | 2006-02-12 01:48:47 -0800 | [diff] [blame] | 11 | [verse] |
Ben Peart | 780494b | 2017-09-22 12:35:41 -0400 | [diff] [blame] | 12 | 'git ls-files' [-z] [-t] [-v] [-f] |
Jean-Noël Avila | 89557d6 | 2021-11-06 19:48:53 +0100 | [diff] [blame] | 13 | [-c|--cached] [-d|--deleted] [-o|--others] [-i|--|ignored] |
| 14 | [-s|--stage] [-u|--unmerged] [-k|--|killed] [-m|--modified] |
| 15 | [--directory [--no-empty-directory]] [--eol] |
ZheNing Hu | 93a7d98 | 2021-01-23 10:20:10 +0000 | [diff] [blame] | 16 | [--deduplicate] |
David Greaves | 2cf565c | 2005-05-10 22:32:30 +0100 | [diff] [blame] | 17 | [-x <pattern>|--exclude=<pattern>] |
| 18 | [-X <file>|--exclude-from=<file>] |
Eric Wong | ad0cae4 | 2006-03-07 11:59:17 -0800 | [diff] [blame] | 19 | [--exclude-per-directory=<file>] |
Jeff King | 8e7b07c | 2007-11-15 02:04:30 -0500 | [diff] [blame] | 20 | [--exclude-standard] |
Junio C Hamano | a7a0f3d | 2007-09-14 16:59:04 -0700 | [diff] [blame] | 21 | [--error-unmatch] [--with-tree=<tree-ish>] |
Brandon Williams | e77aa33 | 2016-10-07 11:18:49 -0700 | [diff] [blame] | 22 | [--full-name] [--recurse-submodules] |
Junio C Hamano | cda34e0 | 2020-11-04 14:01:37 -0800 | [diff] [blame] | 23 | [--abbrev[=<n>]] [--] [<file>...] |
David Greaves | 2cf565c | 2005-05-10 22:32:30 +0100 | [diff] [blame] | 24 | |
| 25 | DESCRIPTION |
| 26 | ----------- |
Utku Gultopu | b356d23 | 2021-01-08 16:54:56 +0000 | [diff] [blame] | 27 | This merges the file listing in the index with the actual working |
| 28 | directory list, and shows different combinations of the two. |
David Greaves | 2cf565c | 2005-05-10 22:32:30 +0100 | [diff] [blame] | 29 | |
| 30 | One or more of the options below may be used to determine the files |
| 31 | shown: |
| 32 | |
| 33 | OPTIONS |
| 34 | ------- |
Stephan Beyer | 3240240 | 2008-06-08 03:36:09 +0200 | [diff] [blame] | 35 | -c:: |
| 36 | --cached:: |
David Greaves | 2cf565c | 2005-05-10 22:32:30 +0100 | [diff] [blame] | 37 | Show cached files in the output (default) |
| 38 | |
Stephan Beyer | 3240240 | 2008-06-08 03:36:09 +0200 | [diff] [blame] | 39 | -d:: |
| 40 | --deleted:: |
David Greaves | 2cf565c | 2005-05-10 22:32:30 +0100 | [diff] [blame] | 41 | Show deleted files in the output |
| 42 | |
Stephan Beyer | 3240240 | 2008-06-08 03:36:09 +0200 | [diff] [blame] | 43 | -m:: |
| 44 | --modified:: |
Junio C Hamano | b039189 | 2005-09-19 15:11:15 -0700 | [diff] [blame] | 45 | Show modified files in the output |
| 46 | |
Stephan Beyer | 3240240 | 2008-06-08 03:36:09 +0200 | [diff] [blame] | 47 | -o:: |
| 48 | --others:: |
Matthieu Moy | 4d590f0 | 2009-08-06 17:11:48 +0200 | [diff] [blame] | 49 | Show other (i.e. untracked) files in the output |
David Greaves | 2cf565c | 2005-05-10 22:32:30 +0100 | [diff] [blame] | 50 | |
Stephan Beyer | 3240240 | 2008-06-08 03:36:09 +0200 | [diff] [blame] | 51 | -i:: |
| 52 | --ignored:: |
Jeff King | 500348a | 2009-10-30 15:05:52 -0400 | [diff] [blame] | 53 | Show only ignored files in the output. When showing files in the |
| 54 | index, print only those matched by an exclude pattern. When |
| 55 | showing "other" files, show only those matched by an exclude |
Andreas Heiduk | 47481ff | 2018-05-03 20:48:26 +0200 | [diff] [blame] | 56 | pattern. Standard ignore rules are not automatically activated, |
| 57 | therefore at least one of the `--exclude*` options is required. |
David Greaves | 2cf565c | 2005-05-10 22:32:30 +0100 | [diff] [blame] | 58 | |
Stephan Beyer | 3240240 | 2008-06-08 03:36:09 +0200 | [diff] [blame] | 59 | -s:: |
| 60 | --stage:: |
Mostyn Bramley-Moore | be6ed14 | 2017-04-01 09:08:25 +0200 | [diff] [blame] | 61 | Show staged contents' mode bits, object name and stage number in the output. |
David Greaves | 2cf565c | 2005-05-10 22:32:30 +0100 | [diff] [blame] | 62 | |
Petr Baudis | a325957 | 2006-01-22 01:22:30 +0100 | [diff] [blame] | 63 | --directory:: |
| 64 | If a whole directory is classified as "other", show just its |
| 65 | name (with a trailing slash) and not its whole contents. |
| 66 | |
Petr Baudis | b0a3de4 | 2006-03-26 16:59:52 +0200 | [diff] [blame] | 67 | --no-empty-directory:: |
| 68 | Do not list empty directories. Has no effect without --directory. |
| 69 | |
Stephan Beyer | 3240240 | 2008-06-08 03:36:09 +0200 | [diff] [blame] | 70 | -u:: |
| 71 | --unmerged:: |
David Greaves | 2cf565c | 2005-05-10 22:32:30 +0100 | [diff] [blame] | 72 | Show unmerged files in the output (forces --stage) |
| 73 | |
Stephan Beyer | 3240240 | 2008-06-08 03:36:09 +0200 | [diff] [blame] | 74 | -k:: |
| 75 | --killed:: |
Junio C Hamano | 6ca4594 | 2005-05-12 17:17:54 -0700 | [diff] [blame] | 76 | Show files on the filesystem that need to be removed due |
Kai Ruemmler | ab18247 | 2005-10-07 14:05:03 -0700 | [diff] [blame] | 77 | to file/directory conflicts for checkout-index to |
Junio C Hamano | 6ca4594 | 2005-05-12 17:17:54 -0700 | [diff] [blame] | 78 | succeed. |
| 79 | |
David Greaves | 2cf565c | 2005-05-10 22:32:30 +0100 | [diff] [blame] | 80 | -z:: |
Andreas Heiduk | 860cd69 | 2017-03-02 20:03:52 +0100 | [diff] [blame] | 81 | \0 line termination on output and do not quote filenames. |
| 82 | See OUTPUT below for more information. |
David Greaves | 2cf565c | 2005-05-10 22:32:30 +0100 | [diff] [blame] | 83 | |
ZheNing Hu | 93a7d98 | 2021-01-23 10:20:10 +0000 | [diff] [blame] | 84 | --deduplicate:: |
| 85 | When only filenames are shown, suppress duplicates that may |
| 86 | come from having multiple stages during a merge, or giving |
| 87 | `--deleted` and `--modified` option at the same time. |
| 88 | When any of the `-t`, `--unmerged`, or `--stage` option is |
| 89 | in use, this option has no effect. |
| 90 | |
Stephan Beyer | 3240240 | 2008-06-08 03:36:09 +0200 | [diff] [blame] | 91 | -x <pattern>:: |
| 92 | --exclude=<pattern>:: |
Junio C Hamano | 4c60852 | 2010-09-15 17:34:20 -0700 | [diff] [blame] | 93 | Skip untracked files matching pattern. |
Jay Soffian | 75609a0 | 2010-09-15 19:56:48 -0400 | [diff] [blame] | 94 | Note that pattern is a shell wildcard pattern. See EXCLUDE PATTERNS |
| 95 | below for more information. |
David Greaves | 2cf565c | 2005-05-10 22:32:30 +0100 | [diff] [blame] | 96 | |
Stephan Beyer | 3240240 | 2008-06-08 03:36:09 +0200 | [diff] [blame] | 97 | -X <file>:: |
| 98 | --exclude-from=<file>:: |
Junio C Hamano | 4c60852 | 2010-09-15 17:34:20 -0700 | [diff] [blame] | 99 | Read exclude patterns from <file>; 1 per line. |
Junio C Hamano | 30b0535 | 2005-07-24 15:47:26 -0700 | [diff] [blame] | 100 | |
| 101 | --exclude-per-directory=<file>:: |
Junio C Hamano | 4c60852 | 2010-09-15 17:34:20 -0700 | [diff] [blame] | 102 | Read additional exclude patterns that apply only to the |
Junio C Hamano | 30b0535 | 2005-07-24 15:47:26 -0700 | [diff] [blame] | 103 | directory and its subdirectories in <file>. |
David Greaves | 2cf565c | 2005-05-10 22:32:30 +0100 | [diff] [blame] | 104 | |
Jeff King | 8e7b07c | 2007-11-15 02:04:30 -0500 | [diff] [blame] | 105 | --exclude-standard:: |
Thomas Ackermann | 2de9b71 | 2013-01-21 20:17:53 +0100 | [diff] [blame] | 106 | Add the standard Git exclusions: .git/info/exclude, .gitignore |
Jeff King | 8e7b07c | 2007-11-15 02:04:30 -0500 | [diff] [blame] | 107 | in each directory, and the user's global exclusion file. |
| 108 | |
Carl Worth | c8af25c | 2006-02-21 12:48:30 -0800 | [diff] [blame] | 109 | --error-unmatch:: |
| 110 | If any <file> does not appear in the index, treat this as an |
| 111 | error (return 1). |
| 112 | |
Junio C Hamano | a7a0f3d | 2007-09-14 16:59:04 -0700 | [diff] [blame] | 113 | --with-tree=<tree-ish>:: |
| 114 | When using --error-unmatch to expand the user supplied |
| 115 | <file> (i.e. path pattern) arguments to paths, pretend |
| 116 | that paths which were removed in the index since the |
| 117 | named <tree-ish> are still present. Using this option |
| 118 | with `-s` or `-u` options does not make any sense. |
| 119 | |
David Greaves | 2cf565c | 2005-05-10 22:32:30 +0100 | [diff] [blame] | 120 | -t:: |
Matthieu Moy | 5bc0e24 | 2010-07-28 09:24:27 +0200 | [diff] [blame] | 121 | This feature is semi-deprecated. For scripting purpose, |
| 122 | linkgit:git-status[1] `--porcelain` and |
| 123 | linkgit:git-diff-files[1] `--name-status` are almost always |
| 124 | superior alternatives, and users should look at |
| 125 | linkgit:git-status[1] `--short` or linkgit:git-diff[1] |
| 126 | `--name-status` for more user-friendly alternatives. |
| 127 | + |
Jeff King | da9ca95 | 2019-04-22 11:15:41 -0400 | [diff] [blame] | 128 | -- |
Matthieu Moy | 5bc0e24 | 2010-07-28 09:24:27 +0200 | [diff] [blame] | 129 | This option identifies the file status with the following tags (followed by |
| 130 | a space) at the start of each line: |
| 131 | |
Jonas Fonseca | df8baa4 | 2005-10-03 19:16:30 +0200 | [diff] [blame] | 132 | H:: cached |
Nguyễn Thái Ngọc Duy | 44a3691 | 2009-08-20 20:46:57 +0700 | [diff] [blame] | 133 | S:: skip-worktree |
Jonas Fonseca | df8baa4 | 2005-10-03 19:16:30 +0200 | [diff] [blame] | 134 | M:: unmerged |
| 135 | R:: removed/deleted |
Junio C Hamano | 8943867 | 2005-12-29 01:20:06 -0800 | [diff] [blame] | 136 | C:: modified/changed |
Jonas Fonseca | df8baa4 | 2005-10-03 19:16:30 +0200 | [diff] [blame] | 137 | K:: to be killed |
Junio C Hamano | 41ac06c | 2006-02-13 21:52:10 -0800 | [diff] [blame] | 138 | ?:: other |
Jeff King | da9ca95 | 2019-04-22 11:15:41 -0400 | [diff] [blame] | 139 | -- |
David Greaves | 2cf565c | 2005-05-10 22:32:30 +0100 | [diff] [blame] | 140 | |
Junio C Hamano | f9666ad | 2006-02-12 01:48:47 -0800 | [diff] [blame] | 141 | -v:: |
| 142 | Similar to `-t`, but use lowercase letters for files |
Junio C Hamano | 56c3eb1 | 2007-12-21 13:50:58 -0800 | [diff] [blame] | 143 | that are marked as 'assume unchanged' (see |
Dan McGee | 5162e69 | 2007-12-29 00:20:38 -0600 | [diff] [blame] | 144 | linkgit:git-update-index[1]). |
Junio C Hamano | f9666ad | 2006-02-12 01:48:47 -0800 | [diff] [blame] | 145 | |
Ben Peart | 780494b | 2017-09-22 12:35:41 -0400 | [diff] [blame] | 146 | -f:: |
| 147 | Similar to `-t`, but use lowercase letters for files |
| 148 | that are marked as 'fsmonitor valid' (see |
| 149 | linkgit:git-update-index[1]). |
| 150 | |
Junio C Hamano | 9a84074 | 2005-12-23 15:51:33 -0800 | [diff] [blame] | 151 | --full-name:: |
| 152 | When run from a subdirectory, the command usually |
| 153 | outputs paths relative to the current directory. This |
| 154 | option forces paths to be output relative to the project |
| 155 | top directory. |
| 156 | |
Brandon Williams | e77aa33 | 2016-10-07 11:18:49 -0700 | [diff] [blame] | 157 | --recurse-submodules:: |
Damien Robert | acbfae3 | 2020-04-06 15:57:09 +0200 | [diff] [blame] | 158 | Recursively calls ls-files on each active submodule in the repository. |
Jonathan Tan | 290eada | 2022-02-23 16:23:03 -0800 | [diff] [blame] | 159 | Currently there is only support for the --cached and --stage modes. |
Brandon Williams | e77aa33 | 2016-10-07 11:18:49 -0700 | [diff] [blame] | 160 | |
Eric Wong | ad0cae4 | 2006-03-07 11:59:17 -0800 | [diff] [blame] | 161 | --abbrev[=<n>]:: |
| 162 | Instead of showing the full 40-byte hexadecimal object |
Junio C Hamano | cda34e0 | 2020-11-04 14:01:37 -0800 | [diff] [blame] | 163 | lines, show the shortest prefix that is at least '<n>' |
| 164 | hexdigits long that uniquely refers the object. |
Eric Wong | ad0cae4 | 2006-03-07 11:59:17 -0800 | [diff] [blame] | 165 | Non default number of digits can be specified with --abbrev=<n>. |
| 166 | |
Thomas Rast | 8497421 | 2010-07-31 00:35:59 +0200 | [diff] [blame] | 167 | --debug:: |
| 168 | After each line that describes a file, add more data about its |
| 169 | cache entry. This is intended to show as much information as |
| 170 | possible for manual inspection; the exact format may change at |
| 171 | any time. |
| 172 | |
Torsten Bögershausen | a7630bd | 2016-01-16 07:50:02 +0100 | [diff] [blame] | 173 | --eol:: |
| 174 | Show <eolinfo> and <eolattr> of files. |
| 175 | <eolinfo> is the file content identification used by Git when |
| 176 | the "text" attribute is "auto" (or not set and core.autocrlf is not false). |
| 177 | <eolinfo> is either "-text", "none", "lf", "crlf", "mixed" or "". |
| 178 | + |
| 179 | "" means the file is not a regular file, it is not in the index or |
Thomas Ackermann | d285ab0 | 2016-03-03 19:43:51 +0100 | [diff] [blame] | 180 | not accessible in the working tree. |
Torsten Bögershausen | a7630bd | 2016-01-16 07:50:02 +0100 | [diff] [blame] | 181 | + |
| 182 | <eolattr> is the attribute that is used when checking out or committing, |
| 183 | it is either "", "-text", "text", "text=auto", "text eol=lf", "text eol=crlf". |
Torsten Bögershausen | 41a616d | 2016-08-25 17:52:57 +0200 | [diff] [blame] | 184 | Since Git 2.10 "text=auto eol=lf" and "text=auto eol=crlf" are supported. |
Torsten Bögershausen | a7630bd | 2016-01-16 07:50:02 +0100 | [diff] [blame] | 185 | + |
| 186 | Both the <eolinfo> in the index ("i/<eolinfo>") |
| 187 | and in the working tree ("w/<eolinfo>") are shown for regular files, |
| 188 | followed by the ("attr/<eolattr>"). |
| 189 | |
Derrick Stolee | 7808709 | 2021-12-22 14:20:53 +0000 | [diff] [blame] | 190 | --sparse:: |
| 191 | If the index is sparse, show the sparse directories without expanding |
| 192 | to the contained files. Sparse directories will be shown with a |
| 193 | trailing slash, such as "x/" for a sparse directory "x". |
| 194 | |
sean | e994004 | 2006-05-05 15:05:24 -0400 | [diff] [blame] | 195 | \--:: |
Fredrik Kuivinen | 500b97e | 2005-10-02 17:33:38 +0200 | [diff] [blame] | 196 | Do not interpret any more arguments as options. |
| 197 | |
| 198 | <file>:: |
| 199 | Files to show. If no files are given all files which match the other |
| 200 | specified criteria are shown. |
| 201 | |
Nguyễn Thái Ngọc Duy | 76a8788 | 2018-04-30 17:35:33 +0200 | [diff] [blame] | 202 | OUTPUT |
David Greaves | 2cf565c | 2005-05-10 22:32:30 +0100 | [diff] [blame] | 203 | ------ |
Matthieu Moy | bcf9626 | 2016-06-28 13:40:11 +0200 | [diff] [blame] | 204 | 'git ls-files' just outputs the filenames unless `--stage` is specified in |
David Greaves | 2cf565c | 2005-05-10 22:32:30 +0100 | [diff] [blame] | 205 | which case it outputs: |
| 206 | |
| 207 | [<tag> ]<mode> <object> <stage> <file> |
| 208 | |
Torsten Bögershausen | a7630bd | 2016-01-16 07:50:02 +0100 | [diff] [blame] | 209 | 'git ls-files --eol' will show |
| 210 | i/<eolinfo><SPACES>w/<eolinfo><SPACES>attr/<eolattr><SPACE*><TAB><file> |
| 211 | |
Thomas Rast | 0b444cd | 2010-01-10 00:33:00 +0100 | [diff] [blame] | 212 | 'git ls-files --unmerged' and 'git ls-files --stage' can be used to examine |
David Greaves | 2cf565c | 2005-05-10 22:32:30 +0100 | [diff] [blame] | 213 | detailed information on unmerged paths. |
| 214 | |
Thomas Ackermann | d5fa1f1 | 2013-04-15 19:49:04 +0200 | [diff] [blame] | 215 | For an unmerged path, instead of recording a single mode/SHA-1 pair, |
Jakub Narebski | 5adf317 | 2007-05-26 00:37:40 +0200 | [diff] [blame] | 216 | the index records up to three such pairs; one from tree O in stage |
David Greaves | 2cf565c | 2005-05-10 22:32:30 +0100 | [diff] [blame] | 217 | 1, A in stage 2, and B in stage 3. This information can be used by |
Johannes Schindelin | 2c6e477 | 2005-08-05 17:05:02 +0200 | [diff] [blame] | 218 | the user (or the porcelain) to see what should eventually be recorded at the |
Jonathan Nieder | 483bc4f | 2008-06-30 13:56:34 -0500 | [diff] [blame] | 219 | path. (see linkgit:git-read-tree[1] for more information on state) |
David Greaves | 2cf565c | 2005-05-10 22:32:30 +0100 | [diff] [blame] | 220 | |
Andreas Heiduk | 860cd69 | 2017-03-02 20:03:52 +0100 | [diff] [blame] | 221 | Without the `-z` option, pathnames with "unusual" characters are |
| 222 | quoted as explained for the configuration variable `core.quotePath` |
| 223 | (see linkgit:git-config[1]). Using `-z` the filename is output |
| 224 | verbatim and the line is terminated by a NUL byte. |
Junio C Hamano | d88156e | 2005-10-14 21:56:46 -0700 | [diff] [blame] | 225 | |
Junio C Hamano | 30b0535 | 2005-07-24 15:47:26 -0700 | [diff] [blame] | 226 | |
Nguyễn Thái Ngọc Duy | 76a8788 | 2018-04-30 17:35:33 +0200 | [diff] [blame] | 227 | EXCLUDE PATTERNS |
Junio C Hamano | 30b0535 | 2005-07-24 15:47:26 -0700 | [diff] [blame] | 228 | ---------------- |
| 229 | |
Thomas Rast | 0b444cd | 2010-01-10 00:33:00 +0100 | [diff] [blame] | 230 | 'git ls-files' can use a list of "exclude patterns" when |
Junio C Hamano | 30b0535 | 2005-07-24 15:47:26 -0700 | [diff] [blame] | 231 | traversing the directory tree and finding files to show when the |
Dan McGee | 5162e69 | 2007-12-29 00:20:38 -0600 | [diff] [blame] | 232 | flags --others or --ignored are specified. linkgit:gitignore[5] |
Josh Triplett | cedb8d5 | 2007-06-02 10:08:54 -0700 | [diff] [blame] | 233 | specifies the format of exclude patterns. |
Junio C Hamano | 30b0535 | 2005-07-24 15:47:26 -0700 | [diff] [blame] | 234 | |
Josh Triplett | cedb8d5 | 2007-06-02 10:08:54 -0700 | [diff] [blame] | 235 | These exclude patterns come from these places, in order: |
Junio C Hamano | 30b0535 | 2005-07-24 15:47:26 -0700 | [diff] [blame] | 236 | |
Jason St. John | 06ab60c | 2014-05-21 14:52:26 -0400 | [diff] [blame] | 237 | 1. The command-line flag --exclude=<pattern> specifies a |
Josh Triplett | cedb8d5 | 2007-06-02 10:08:54 -0700 | [diff] [blame] | 238 | single pattern. Patterns are ordered in the same order |
| 239 | they appear in the command line. |
Junio C Hamano | 30b0535 | 2005-07-24 15:47:26 -0700 | [diff] [blame] | 240 | |
Jason St. John | 06ab60c | 2014-05-21 14:52:26 -0400 | [diff] [blame] | 241 | 2. The command-line flag --exclude-from=<file> specifies a |
Josh Triplett | cedb8d5 | 2007-06-02 10:08:54 -0700 | [diff] [blame] | 242 | file containing a list of patterns. Patterns are ordered |
| 243 | in the same order they appear in the file. |
Junio C Hamano | 30b0535 | 2005-07-24 15:47:26 -0700 | [diff] [blame] | 244 | |
Jason St. John | 06ab60c | 2014-05-21 14:52:26 -0400 | [diff] [blame] | 245 | 3. The command-line flag --exclude-per-directory=<name> specifies |
Thomas Rast | 0b444cd | 2010-01-10 00:33:00 +0100 | [diff] [blame] | 246 | a name of the file in each directory 'git ls-files' |
Josh Triplett | cedb8d5 | 2007-06-02 10:08:54 -0700 | [diff] [blame] | 247 | examines, normally `.gitignore`. Files in deeper |
| 248 | directories take precedence. Patterns are ordered in the |
| 249 | same order they appear in the files. |
Junio C Hamano | 30b0535 | 2005-07-24 15:47:26 -0700 | [diff] [blame] | 250 | |
| 251 | A pattern specified on the command line with --exclude or read |
| 252 | from the file specified with --exclude-from is relative to the |
| 253 | top of the directory tree. A pattern read from a file specified |
| 254 | by --exclude-per-directory is relative to the directory that the |
| 255 | pattern file appears in. |
| 256 | |
Junio C Hamano | 56ae8df | 2008-05-28 16:55:27 -0700 | [diff] [blame] | 257 | SEE ALSO |
David Greaves | c1bdacf | 2005-05-10 22:32:38 +0100 | [diff] [blame] | 258 | -------- |
Dan McGee | 5162e69 | 2007-12-29 00:20:38 -0600 | [diff] [blame] | 259 | linkgit:git-read-tree[1], linkgit:gitignore[5] |
David Greaves | 2cf565c | 2005-05-10 22:32:30 +0100 | [diff] [blame] | 260 | |
David Greaves | 2cf565c | 2005-05-10 22:32:30 +0100 | [diff] [blame] | 261 | GIT |
| 262 | --- |
Christian Couder | 9e1f0a8 | 2008-06-06 09:07:32 +0200 | [diff] [blame] | 263 | Part of the linkgit:git[1] suite |