blob: f4bb9c5daf95c6669210429d7a560565dadc91d5 [file] [log] [blame]
Junio C Hamano1a4e8412005-12-27 08:17:231git-update-index(1)
2===================
3
4NAME
5----
Junio C Hamano7c73c662007-01-19 00:37:506git-update-index - Register file contents in the working tree to the index
Junio C Hamano1a4e8412005-12-27 08:17:237
8
9SYNOPSIS
10--------
Junio C Hamano7e9f6b72006-02-22 10:44:5511[verse]
Junio C Hamanofce7c7e2008-07-02 03:06:3812'git update-index'
Junio C Hamano46338f52006-05-04 00:46:4413 [--add] [--remove | --force-remove] [--replace]
14 [--refresh] [-q] [--unmerged] [--ignore-missing]
Junio C Hamanod75148a2014-04-08 19:48:3815 [(--cacheinfo <mode>,<object>,<file>)...]
Junio C Hamano1a4e8412005-12-27 08:17:2316 [--chmod=(+|-)x]
Junio C Hamano3d1b5a12013-05-17 23:34:0217 [--[no-]assume-unchanged]
18 [--[no-]skip-worktree]
Junio C Hamano8ac8a3d2019-11-11 04:33:4619 [--[no-]ignore-skip-worktree-entries]
Junio C Hamanod7105602017-11-21 05:32:5020 [--[no-]fsmonitor-valid]
Junio C Hamanodfccbb02008-05-26 01:16:1421 [--ignore-submodules]
Junio C Hamanod30e7ef2015-12-10 22:27:1722 [--[no-]split-index]
Junio C Hamano9099a7c2016-02-10 23:42:0523 [--[no-|test-|force-]untracked-cache]
Junio C Hamanod7105602017-11-21 05:32:5024 [--[no-]fsmonitor]
Junio C Hamano8a0a21e2006-08-24 07:37:4525 [--really-refresh] [--unresolve] [--again | -g]
Junio C Hamano1a4e8412005-12-27 08:17:2326 [--info-only] [--index-info]
Junio C Hamanob76a6862012-05-02 22:02:4627 [-z] [--stdin] [--index-version <n>]
Junio C Hamano1a4e8412005-12-27 08:17:2328 [--verbose]
Junio C Hamanod2179ef2010-10-22 04:12:1729 [--] [<file>...]
Junio C Hamano1a4e8412005-12-27 08:17:2330
31DESCRIPTION
32-----------
Junio C Hamano7887f9b2021-01-25 23:32:3333Modifies the index. Each file mentioned is updated into the index and
34any 'unmerged' or 'needs updating' state is cleared.
Junio C Hamano1a4e8412005-12-27 08:17:2335
Junio C Hamano35738e82008-01-07 07:55:4636See also linkgit:git-add[1] for a more user-friendly way to do some of
Junio C Hamano3d30fd52007-05-08 00:32:5337the most common operations on the index.
38
Junio C Hamano1aa40d22010-01-21 17:46:4339The way 'git update-index' handles files it is told about can be modified
Junio C Hamano1a4e8412005-12-27 08:17:2340using the various options:
41
42OPTIONS
43-------
44--add::
45If a specified file isn't in the index already then it's
46added.
47Default behaviour is to ignore new files.
48
49--remove::
50If a specified file is in the index but is missing then it's
51removed.
Junio C Hamano341071d2006-06-04 07:24:4852Default behavior is to ignore removed file.
Junio C Hamano1a4e8412005-12-27 08:17:2353
54--refresh::
55Looks at the current index and checks to see if merges or
56updates are needed by checking stat() information.
57
58-q::
59 Quiet. If --refresh finds that the index needs an update, the
60 default behavior is to error out. This option makes
Junio C Hamano1aa40d22010-01-21 17:46:4361'git update-index' continue anyway.
Junio C Hamano1a4e8412005-12-27 08:17:2362
Junio C Hamano54bf1e22008-12-20 06:30:1163--ignore-submodules::
Junio C Hamanodfccbb02008-05-26 01:16:1464Do not try to update submodules. This option is only respected
65when passed before --refresh.
66
Junio C Hamano1a4e8412005-12-27 08:17:2367--unmerged::
68 If --refresh finds unmerged changes in the index, the default
Junio C Hamano1aa40d22010-01-21 17:46:4369behavior is to error out. This option makes 'git update-index'
Junio C Hamano1a4e8412005-12-27 08:17:2370 continue anyway.
71
72--ignore-missing::
73Ignores missing files during a --refresh
74
Junio C Hamanod75148a2014-04-08 19:48:3875--cacheinfo <mode>,<object>,<path>::
Junio C Hamano1a4e8412005-12-27 08:17:2376--cacheinfo <mode> <object> <path>::
Junio C Hamanod75148a2014-04-08 19:48:3877Directly insert the specified info into the index. For
78backward compatibility, you can also give these three
79arguments as three separate parameters, but new users are
80encouraged to use a single-parameter form.
Junio C Hamanoa77a5132007-06-08 16:13:4481
Junio C Hamano1a4e8412005-12-27 08:17:2382--index-info::
83 Read index information from stdin.
84
85--chmod=(+|-)x::
Junio C Hamanoa77a5132007-06-08 16:13:4486 Set the execute permissions on the updated files.
Junio C Hamano1a4e8412005-12-27 08:17:2387
Junio C Hamano3d1b5a12013-05-17 23:34:0288--[no-]assume-unchanged::
Junio C Hamano6df93d92014-12-22 22:48:0989When this flag is specified, the object names recorded
90for the paths are not updated. Instead, this option
91sets/unsets the "assume unchanged" bit for the
92paths. When the "assume unchanged" bit is on, the user
93promises not to change the file and allows Git to assume
94that the working tree file matches what is recorded in
95the index. If you want to change the working tree file,
96you need to unset the bit to tell Git. This is
Junio C Hamano7e9f6b72006-02-22 10:44:5597sometimes helpful when working with a big project on a
98filesystem that has very slow lstat(2) system call
99(e.g. cifs).
Junio C Hamano915cd9b2008-07-20 01:24:17100+
Junio C Hamano915cd9b2008-07-20 01:24:17101Git will fail (gracefully) in case it needs to modify this file
102in the index e.g. when merging in a commit;
103thus, in case the assumed-untracked file is changed upstream,
104you will need to handle the situation manually.
Junio C Hamano7e9f6b72006-02-22 10:44:55105
Junio C Hamano446ed772009-11-10 22:02:20106--really-refresh::
Junio C Hamano92d80372016-07-13 22:00:05107Like `--refresh`, but checks stat information unconditionally,
Junio C Hamano446ed772009-11-10 22:02:20108without regard to the "assume unchanged" setting.
109
Junio C Hamano3d1b5a12013-05-17 23:34:02110--[no-]skip-worktree::
Junio C Hamano3c8d6702010-01-13 23:09:03111When one of these flags is specified, the object name recorded
112for the paths are not updated. Instead, these options
113set and unset the "skip-worktree" bit for the paths. See
114section "Skip-worktree bit" below for more information.
115
Junio C Hamano8ac8a3d2019-11-11 04:33:46116
117--[no-]ignore-skip-worktree-entries::
118Do not remove skip-worktree (AKA "index-only") entries even when
119the `--remove` option was specified.
120
Junio C Hamanod7105602017-11-21 05:32:50121--[no-]fsmonitor-valid::
122When one of these flags is specified, the object name recorded
123for the paths are not updated. Instead, these options
124set and unset the "fsmonitor valid" bit for the paths. See
125section "File System Monitor" below for more information.
126
Junio C Hamanoeb415992008-06-08 22:49:47127-g::
128--again::
Junio C Hamano1aa40d22010-01-21 17:46:43129Runs 'git update-index' itself on the paths whose index
Junio C Hamano26a57372006-05-10 00:13:40130entries are different from those from the `HEAD` commit.
131
Junio C Hamano46338f52006-05-04 00:46:44132--unresolve::
133Restores the 'unmerged' or 'needs updating' state of a
134file during a merge if it was cleared by accident.
135
Junio C Hamano1a4e8412005-12-27 08:17:23136--info-only::
137Do not create objects in the object database for all
138<file> arguments that follow this flag; just insert
139their object IDs into the index.
140
141--force-remove::
142Remove the file from the index even when the working directory
143still has such a file. (Implies --remove.)
144
145--replace::
146By default, when a file `path` exists in the index,
Junio C Hamano1aa40d22010-01-21 17:46:43147'git update-index' refuses an attempt to add `path/file`.
Junio C Hamano1a4e8412005-12-27 08:17:23148Similarly if a file `path/file` exists, a file `path`
149cannot be added. With --replace flag, existing entries
Junio C Hamano54bf1e22008-12-20 06:30:11150that conflict with the entry being added are
Junio C Hamano1a4e8412005-12-27 08:17:23151automatically removed with warning messages.
152
153--stdin::
154Instead of taking list of paths from the command line,
155read list of paths from the standard input. Paths are
156separated by LF (i.e. one path per line) by default.
157
158--verbose::
159 Report what is being added and removed from index.
160
Junio C Hamanob76a6862012-05-02 22:02:46161--index-version <n>::
162Write the resulting index out in the named on-disk format version.
Junio C Hamano947ab822013-03-19 23:07:29163Supported versions are 2, 3 and 4. The current default version is 2
164or 3, depending on whether extra features are used, such as
165`git add -N`.
166+
167Version 4 performs a simple pathname compression that reduces index
168size by 30%-50% on large repositories, which results in faster load
Junio C Hamanod4bbec02017-09-25 07:24:53169time. Version 4 is relatively young (first released in 1.8.0 in
Junio C Hamano947ab822013-03-19 23:07:29170October 2012). Other Git implementations such as JGit and libgit2
171may not support it yet.
Junio C Hamanob76a6862012-05-02 22:02:46172
Junio C Hamano1a4e8412005-12-27 08:17:23173-z::
Junio C Hamanoc27b7332010-10-14 04:37:28174Only meaningful with `--stdin` or `--index-info`; paths are
175separated with NUL character instead of LF.
Junio C Hamano1a4e8412005-12-27 08:17:23176
Junio C Hamano6f0c9442014-07-16 21:51:32177--split-index::
178--no-split-index::
Junio C Hamano3d4a66d2017-03-17 21:07:26179Enable or disable split index mode. If split-index mode is
180already enabled and `--split-index` is given again, all
181changes in $GIT_DIR/index are pushed back to the shared index
182file.
183+
184These options take effect whatever the value of the `core.splitIndex`
185configuration variable (see linkgit:git-config[1]). But a warning is
186emitted when the change goes against the configured value, as the
187configured value will take effect next time the index is read and this
188will remove the intended effect of the option.
Junio C Hamano6f0c9442014-07-16 21:51:32189
Junio C Hamanoc4e2a202015-05-26 21:38:47190--untracked-cache::
191--no-untracked-cache::
Junio C Hamano9099a7c2016-02-10 23:42:05192Enable or disable untracked cache feature. Please use
193`--test-untracked-cache` before enabling it.
194+
195These options take effect whatever the value of the `core.untrackedCache`
196configuration variable (see linkgit:git-config[1]). But a warning is
197emitted when the change goes against the configured value, as the
198configured value will take effect next time the index is read and this
199will remove the intended effect of the option.
200
201--test-untracked-cache::
202Only perform tests on the working directory to make sure
203untracked cache can be used. You have to manually enable
204untracked cache using `--untracked-cache` or
205`--force-untracked-cache` or the `core.untrackedCache`
206configuration variable afterwards if you really want to use
207it. If a test fails the exit code is 1 and a message
208explains what is not working as needed, otherwise the exit
209code is 0 and OK is printed.
Junio C Hamanoc4e2a202015-05-26 21:38:47210
211--force-untracked-cache::
Junio C Hamano9099a7c2016-02-10 23:42:05212Same as `--untracked-cache`. Provided for backwards
213compatibility with older versions of Git where
214`--untracked-cache` used to imply `--test-untracked-cache` but
215this option would enable the extension unconditionally.
Junio C Hamanoc4e2a202015-05-26 21:38:47216
Junio C Hamanod7105602017-11-21 05:32:50217--fsmonitor::
218--no-fsmonitor::
219Enable or disable files system monitor feature. These options
220take effect whatever the value of the `core.fsmonitor`
221configuration variable (see linkgit:git-config[1]). But a warning
222is emitted when the change goes against the configured value, as
223the configured value will take effect next time the index is
224read and this will remove the intended effect of the option.
225
Junio C Hamano1bb569e2006-05-05 23:14:25226\--::
Junio C Hamano1a4e8412005-12-27 08:17:23227Do not interpret any more arguments as options.
228
229<file>::
230Files to act on.
231Note that files beginning with '.' are discarded. This includes
Junio C Hamanoa77a5132007-06-08 16:13:44232`./file` and `dir/./file`. If you don't want this, then use
Junio C Hamano1a4e8412005-12-27 08:17:23233cleaner names.
234The same applies to directories ending '/' and paths with '//'
235
Junio C Hamanob9d9d902018-05-23 07:07:42236USING --REFRESH
Junio C Hamano1a4e8412005-12-27 08:17:23237---------------
Junio C Hamano92d80372016-07-13 22:00:05238`--refresh` does not calculate a new sha1 file or bring the index
Junio C Hamano88bf5712017-09-10 08:39:23239up to date for mode/content changes. But what it *does* do is to
Junio C Hamano1a4e8412005-12-27 08:17:23240"re-match" the stat information of a file with the index, so that you
241can refresh the index for a file that hasn't been changed but where
242the stat entry is out of date.
243
Junio C Hamano1aa40d22010-01-21 17:46:43244For example, you'd want to do this after doing a 'git read-tree', to link
Junio C Hamano1a4e8412005-12-27 08:17:23245up the stat index details with the proper files.
246
Junio C Hamanob9d9d902018-05-23 07:07:42247USING --CACHEINFO OR --INFO-ONLY
Junio C Hamano1a4e8412005-12-27 08:17:23248--------------------------------
Junio C Hamano92d80372016-07-13 22:00:05249`--cacheinfo` is used to register a file that is not in the
Junio C Hamano1a4e8412005-12-27 08:17:23250current working directory. This is useful for minimum-checkout
251merging.
252
Junio C Hamano11ae3202018-08-20 20:15:42253To pretend you have a file at path with mode and sha1, say:
Junio C Hamano1a4e8412005-12-27 08:17:23254
255----------------
Junio C Hamano11ae3202018-08-20 20:15:42256$ git update-index --add --cacheinfo <mode>,<sha1>,<path>
Junio C Hamano1a4e8412005-12-27 08:17:23257----------------
258
Junio C Hamano92d80372016-07-13 22:00:05259`--info-only` is used to register files without placing them in the object
Junio C Hamano1a4e8412005-12-27 08:17:23260database. This is useful for status-only repositories.
261
Junio C Hamano92d80372016-07-13 22:00:05262Both `--cacheinfo` and `--info-only` behave similarly: the index is updated
263but the object database isn't. `--cacheinfo` is useful when the object is
264in the database but the file isn't available locally. `--info-only` is
Junio C Hamano1a4e8412005-12-27 08:17:23265useful when the file is available, but you do not wish to update the
266object database.
267
268
Junio C Hamanob9d9d902018-05-23 07:07:42269USING --INDEX-INFO
Junio C Hamano1a4e8412005-12-27 08:17:23270------------------
271
272`--index-info` is a more powerful mechanism that lets you feed
273multiple entry definitions from the standard input, and designed
274specifically for scripts. It can take inputs of three formats:
275
Junio C Hamano1a4e8412005-12-27 08:17:23276 . mode SP type SP sha1 TAB path
277+
Junio C Hamano11ae3202018-08-20 20:15:42278This format is to stuff `git ls-tree` output into the index.
Junio C Hamano1a4e8412005-12-27 08:17:23279
280 . mode SP sha1 SP stage TAB path
281+
282This format is to put higher order stages into the
Junio C Hamano1aa40d22010-01-21 17:46:43283index file and matches 'git ls-files --stage' output.
Junio C Hamano1a4e8412005-12-27 08:17:23284
Junio C Hamano11ae3202018-08-20 20:15:42285 . mode SP sha1 TAB path
286+
287This format is no longer produced by any Git command, but is
288and will continue to be supported by `update-index --index-info`.
289
Junio C Hamano1a4e8412005-12-27 08:17:23290To place a higher stage entry to the index, the path should
291first be removed by feeding a mode=0 entry for the path, and
292then feeding necessary input lines in the third format.
293
294For example, starting with this index:
295
296------------
297$ git ls-files -s
298100644 8a1218a1024a212bb3db30becd860315f9f3ac52 0 frotz
299------------
300
301you can feed the following input to `--index-info`:
302
303------------
304$ git update-index --index-info
3050 0000000000000000000000000000000000000000 frotz
306100644 8a1218a1024a212bb3db30becd860315f9f3ac52 1 frotz
307100755 8a1218a1024a212bb3db30becd860315f9f3ac52 2 frotz
308------------
309
310The first line of the input feeds 0 as the mode to remove the
Junio C Hamanoe3f080d2013-04-22 02:27:13311path; the SHA-1 does not matter as long as it is well formatted.
Junio C Hamano1a4e8412005-12-27 08:17:23312Then the second and third line feeds stage 1 and stage 2 entries
313for that path. After the above, we would end up with this:
314
315------------
316$ git ls-files -s
317100644 8a1218a1024a212bb3db30becd860315f9f3ac52 1 frotz
318100755 8a1218a1024a212bb3db30becd860315f9f3ac52 2 frotz
319------------
320
321
Junio C Hamanob9d9d902018-05-23 07:07:42322USING ``ASSUME UNCHANGED'' BIT
Junio C Hamanofb2ead32006-11-13 23:40:59323------------------------------
Junio C Hamano7e9f6b72006-02-22 10:44:55324
Junio C Hamano076ffcc2013-02-06 05:13:21325Many operations in Git depend on your filesystem to have an
Junio C Hamano7e9f6b72006-02-22 10:44:55326efficient `lstat(2)` implementation, so that `st_mtime`
327information for working tree files can be cheaply checked to see
328if the file contents have changed from the version recorded in
329the index file. Unfortunately, some filesystems have
330inefficient `lstat(2)`. If your filesystem is one of them, you
331can set "assume unchanged" bit to paths you have not changed to
Junio C Hamano076ffcc2013-02-06 05:13:21332cause Git not to do this check. Note that setting this bit on a
333path does not mean Git will check the contents of the file to
334see if it has changed -- it makes Git to omit any checking and
Junio C Hamano7e9f6b72006-02-22 10:44:55335assume it has *not* changed. When you make changes to working
Junio C Hamano076ffcc2013-02-06 05:13:21336tree files, you have to explicitly tell Git about it by dropping
Junio C Hamano7e9f6b72006-02-22 10:44:55337"assume unchanged" bit, either before or after you modify them.
338
339In order to set "assume unchanged" bit, use `--assume-unchanged`
Junio C Hamano8fb66e52011-10-05 20:59:51340option. To unset, use `--no-assume-unchanged`. To see which files
341have the "assume unchanged" bit set, use `git ls-files -v`
342(see linkgit:git-ls-files[1]).
Junio C Hamano7e9f6b72006-02-22 10:44:55343
344The command looks at `core.ignorestat` configuration variable. When
Junio C Hamanofce7c7e2008-07-02 03:06:38345this is true, paths updated with `git update-index paths...` and
Junio C Hamano076ffcc2013-02-06 05:13:21346paths updated with other Git commands that update both index and
Junio C Hamano1aa40d22010-01-21 17:46:43347working tree (e.g. 'git apply --index', 'git checkout-index -u',
348and 'git read-tree -u') are automatically marked as "assume
Junio C Hamano7e9f6b72006-02-22 10:44:55349unchanged". Note that "assume unchanged" bit is *not* set if
Junio C Hamanofce7c7e2008-07-02 03:06:38350`git update-index --refresh` finds the working tree file matches
351the index (use `git update-index --really-refresh` if you want
Junio C Hamano7e9f6b72006-02-22 10:44:55352to mark them as "assume unchanged").
353
Junio C Hamano7c37da72022-03-09 22:19:31354Sometimes users confuse the assume-unchanged bit with the
355skip-worktree bit. See the final paragraph in the "Skip-worktree bit"
356section below for an explanation of the differences.
357
Junio C Hamano7e9f6b72006-02-22 10:44:55358
Junio C Hamanob9d9d902018-05-23 07:07:42359EXAMPLES
Junio C Hamano1a4e8412005-12-27 08:17:23360--------
361To update and refresh only the files already checked out:
362
363----------------
Junio C Hamanofce7c7e2008-07-02 03:06:38364$ git checkout-index -n -f -a && git update-index --ignore-missing --refresh
Junio C Hamano1a4e8412005-12-27 08:17:23365----------------
366
Junio C Hamanoc8d88c22006-04-29 07:02:01367On an inefficient filesystem with `core.ignorestat` set::
368+
Junio C Hamano7e9f6b72006-02-22 10:44:55369------------
Junio C Hamanoc8d88c22006-04-29 07:02:01370$ git update-index --really-refresh <1>
371$ git update-index --no-assume-unchanged foo.c <2>
372$ git diff --name-only <3>
Junio C Hamano7e9f6b72006-02-22 10:44:55373$ edit foo.c
Junio C Hamanoc8d88c22006-04-29 07:02:01374$ git diff --name-only <4>
Junio C Hamano7e9f6b72006-02-22 10:44:55375M foo.c
Junio C Hamanoc8d88c22006-04-29 07:02:01376$ git update-index foo.c <5>
377$ git diff --name-only <6>
Junio C Hamano7e9f6b72006-02-22 10:44:55378$ edit foo.c
Junio C Hamanoc8d88c22006-04-29 07:02:01379$ git diff --name-only <7>
380$ git update-index --no-assume-unchanged foo.c <8>
381$ git diff --name-only <9>
Junio C Hamano7e9f6b72006-02-22 10:44:55382M foo.c
Junio C Hamanoc8d88c22006-04-29 07:02:01383------------
384+
385<1> forces lstat(2) to set "assume unchanged" bits for paths that match index.
Junio C Hamano7e9f6b72006-02-22 10:44:55386<2> mark the path to be edited.
387<3> this does lstat(2) and finds index matches the path.
Junio C Hamanoc8d88c22006-04-29 07:02:01388<4> this does lstat(2) and finds index does *not* match the path.
Junio C Hamano7e9f6b72006-02-22 10:44:55389<5> registering the new version to index sets "assume unchanged" bit.
390<6> and it is assumed unchanged.
391<7> even after you edit it.
392<8> you can tell about the change after the fact.
393<9> now it checks with lstat(2) and finds it has been changed.
Junio C Hamano7e9f6b72006-02-22 10:44:55394
Junio C Hamano1a4e8412005-12-27 08:17:23395
Junio C Hamanob9d9d902018-05-23 07:07:42396SKIP-WORKTREE BIT
Junio C Hamano3c8d6702010-01-13 23:09:03397-----------------
398
Junio C Hamano7c37da72022-03-09 22:19:31399Skip-worktree bit can be defined in one (long) sentence: Tell git to
400avoid writing the file to the working directory when reasonably
401possible, and treat the file as unchanged when it is not
402present in the working directory.
Junio C Hamano3c8d6702010-01-13 23:09:03403
Junio C Hamano7c37da72022-03-09 22:19:31404Note that not all git commands will pay attention to this bit, and
405some only partially support it.
406
407The update-index flags and the read-tree capabilities relating to the
408skip-worktree bit predated the introduction of the
409linkgit:git-sparse-checkout[1] command, which provides a much easier
410way to configure and handle the skip-worktree bits. If you want to
411reduce your working tree to only deal with a subset of the files in
412the repository, we strongly encourage the use of
413linkgit:git-sparse-checkout[1] in preference to the low-level
414update-index and read-tree primitives.
415
416The primary purpose of the skip-worktree bit is to enable sparse
417checkouts, i.e. to have working directories with only a subset of
418paths present. When the skip-worktree bit is set, Git commands (such
419as `switch`, `pull`, `merge`) will avoid writing these files.
420However, these commands will sometimes write these files anyway in
421important cases such as conflicts during a merge or rebase. Git
422commands will also avoid treating the lack of such files as an
Junio C Hamano3778ccc2022-09-15 23:33:17423intentional deletion; for example `git add -u` will not stage a
Junio C Hamano7c37da72022-03-09 22:19:31424deletion for these files and `git commit -a` will not make a commit
425deleting them either.
Junio C Hamano3c8d6702010-01-13 23:09:03426
427Although this bit looks similar to assume-unchanged bit, its goal is
Junio C Hamano7c37da72022-03-09 22:19:31428different. The assume-unchanged bit is for leaving the file in the
429working tree but having Git omit checking it for changes and presuming
430that the file has not been changed (though if it can determine without
431stat'ing the file that it has changed, it is free to record the
432changes). skip-worktree tells Git to ignore the absence of the file,
433avoid updating it when possible with commands that normally update
434much of the working directory (e.g. `checkout`, `switch`, `pull`,
435etc.), and not have its absence be recorded in commits. Note that in
436sparse checkouts (setup by `git sparse-checkout` or by configuring
437core.sparseCheckout to true), if a file is marked as skip-worktree in
438the index but is found in the working tree, Git will clear the
439skip-worktree bit for that file.
Junio C Hamano3c8d6702010-01-13 23:09:03440
Junio C Hamanob9d9d902018-05-23 07:07:42441SPLIT INDEX
Junio C Hamano3d4a66d2017-03-17 21:07:26442-----------
443
444This mode is designed for repositories with very large indexes, and
445aims at reducing the time it takes to repeatedly write these indexes.
446
447In this mode, the index is split into two files, $GIT_DIR/index and
448$GIT_DIR/sharedindex.<SHA-1>. Changes are accumulated in
449$GIT_DIR/index, the split index, while the shared index file contains
450all index entries and stays unchanged.
451
452All changes in the split index are pushed back to the shared index
453file when the number of entries in the split index reaches a level
454specified by the splitIndex.maxPercentChange config variable (see
455linkgit:git-config[1]).
456
457Each time a new shared index file is created, the old shared index
458files are deleted if their modification time is older than what is
459specified by the splitIndex.sharedIndexExpire config variable (see
460linkgit:git-config[1]).
461
462To avoid deleting a shared index file that is still used, its
Junio C Hamano8ef91f32019-12-01 22:58:27463modification time is updated to the current time every time a new split
Junio C Hamano3d4a66d2017-03-17 21:07:26464index based on the shared index file is either created or read from.
465
Junio C Hamanob9d9d902018-05-23 07:07:42466UNTRACKED CACHE
Junio C Hamano9099a7c2016-02-10 23:42:05467---------------
468
469This cache is meant to speed up commands that involve determining
470untracked files such as `git status`.
471
472This feature works by recording the mtime of the working tree
473directories and then omitting reading directories and stat calls
474against files in those directories whose mtime hasn't changed. For
475this to work the underlying operating system and file system must
476change the `st_mtime` field of directories if files in the directory
477are added, modified or deleted.
478
479You can test whether the filesystem supports that with the
480`--test-untracked-cache` option. The `--untracked-cache` option used
481to implicitly perform that test in older versions of Git, but that's
482no longer the case.
483
484If you want to enable (or disable) this feature, it is easier to use
485the `core.untrackedCache` configuration variable (see
486linkgit:git-config[1]) than using the `--untracked-cache` option to
487`git update-index` in each repository, especially if you want to do so
488across all repositories you use, because you can set the configuration
489variable to `true` (or `false`) in your `$HOME/.gitconfig` just once
490and have it affect all repositories you touch.
491
492When the `core.untrackedCache` configuration variable is changed, the
493untracked cache is added to or removed from the index the next time a
494command reads the index; while when `--[no-|force-]untracked-cache`
495are used, the untracked cache is immediately added to or removed from
496the index.
Junio C Hamano3c8d6702010-01-13 23:09:03497
Junio C Hamano615c3b32018-02-28 23:40:27498Before 2.17, the untracked cache had a bug where replacing a directory
499with a symlink to another directory could cause it to incorrectly show
500files tracked by git as untracked. See the "status: add a failing test
501showing a core.untrackedCache bug" commit to git.git. A workaround for
502that is (and this might work for other undiscovered bugs in the
503future):
504
505----------------
506$ git -c core.untrackedCache=false status
507----------------
508
509This bug has also been shown to affect non-symlink cases of replacing
510a directory with a file when it comes to the internal structures of
511the untracked cache, but no case has been reported where this resulted in
512wrong "git status" output.
513
514There are also cases where existing indexes written by git versions
515before 2.17 will reference directories that don't exist anymore,
516potentially causing many "could not open directory" warnings to be
517printed on "git status". These are new warnings for existing issues
518that were previously silently discarded.
519
520As with the bug described above the solution is to one-off do a "git
521status" run with `core.untrackedCache=false` to flush out the leftover
522bad data.
523
Junio C Hamanob9d9d902018-05-23 07:07:42524FILE SYSTEM MONITOR
Junio C Hamanod7105602017-11-21 05:32:50525-------------------
526
527This feature is intended to speed up git operations for repos that have
528large working directories.
529
Junio C Hamano4bea0282022-04-04 18:21:49530It enables git to work together with a file system monitor (see
Junio C Hamanoe80e7b52022-04-07 22:10:10531linkgit:git-fsmonitor{litdd}daemon[1]
Junio C Hamano4bea0282022-04-04 18:21:49532and the
Junio C Hamanod7105602017-11-21 05:32:50533"fsmonitor-watchman" section of linkgit:githooks[5]) that can
534inform it as to what files have been modified. This enables git to avoid
535having to lstat() every file to find modified files.
536
537When used in conjunction with the untracked cache, it can further improve
538performance by avoiding the cost of scanning the entire working directory
539looking for new files.
540
541If you want to enable (or disable) this feature, it is easier to use
542the `core.fsmonitor` configuration variable (see
Junio C Hamano4bea0282022-04-04 18:21:49543linkgit:git-config[1]) than using the `--fsmonitor` option to `git
544update-index` in each repository, especially if you want to do so
Junio C Hamanod7105602017-11-21 05:32:50545across all repositories you use, because you can set the configuration
Junio C Hamano615c3b32018-02-28 23:40:27546variable in your `$HOME/.gitconfig` just once and have it affect all
547repositories you touch.
Junio C Hamanod7105602017-11-21 05:32:50548
549When the `core.fsmonitor` configuration variable is changed, the
550file system monitor is added to or removed from the index the next time
551a command reads the index. When `--[no-]fsmonitor` are used, the file
552system monitor is immediately added to or removed from the index.
553
Junio C Hamanob9d9d902018-05-23 07:07:42554CONFIGURATION
Junio C Hamano1a4e8412005-12-27 08:17:23555-------------
556
557The command honors `core.filemode` configuration variable. If
Junio C Hamano446ed772009-11-10 22:02:20558your repository is on a filesystem whose executable bits are
Junio C Hamano35738e82008-01-07 07:55:46559unreliable, this should be set to 'false' (see linkgit:git-config[1]).
Junio C Hamano1a4e8412005-12-27 08:17:23560This causes the command to ignore differences in file modes recorded
561in the index and the file mode on the filesystem if they differ only on
562executable bit. On such an unfortunate filesystem, you may
Junio C Hamano1aa40d22010-01-21 17:46:43563need to use 'git update-index --chmod='.
Junio C Hamano1a4e8412005-12-27 08:17:23564
Junio C Hamanoaa83a7d2007-03-05 02:37:29565Quite similarly, if `core.symlinks` configuration variable is set
Junio C Hamano35738e82008-01-07 07:55:46566to 'false' (see linkgit:git-config[1]), symbolic links are checked out
Junio C Hamanoaa83a7d2007-03-05 02:37:29567as plain files, and this command does not modify a recorded file mode
568from symbolic link to regular file.
569
Junio C Hamano7e9f6b72006-02-22 10:44:55570The command looks at `core.ignorestat` configuration variable. See
571'Using "assume unchanged" bit' section above.
572
Junio C Hamano90ccff32008-07-29 08:17:24573The command also looks at `core.trustctime` configuration variable.
574It can be useful when the inode change time is regularly modified by
575something outside Git (file system crawlers and backup systems use
576ctime for marking files processed) (see linkgit:git-config[1]).
577
Junio C Hamano9099a7c2016-02-10 23:42:05578The untracked cache extension can be enabled by the
579`core.untrackedCache` configuration variable (see
580linkgit:git-config[1]).
Junio C Hamano1a4e8412005-12-27 08:17:23581
Junio C Hamanobee061d2020-01-30 23:21:18582NOTES
583-----
584
585Users often try to use the assume-unchanged and skip-worktree bits
586to tell Git to ignore changes to files that are tracked. This does not
587work as expected, since Git may still check working tree files against
588the index when performing certain operations. In general, Git does not
589provide a way to ignore changes to tracked files, so alternate solutions
590are recommended.
591
592For example, if the file you want to change is some sort of config file,
593the repository can include a sample config file that can then be copied
594into the ignored name and modified. The repository can even include a
595script to treat the sample file as a template, modifying and copying it
596automatically.
597
Junio C Hamano9049d912008-05-29 02:09:50598SEE ALSO
Junio C Hamano1a4e8412005-12-27 08:17:23599--------
Junio C Hamano35738e82008-01-07 07:55:46600linkgit:git-config[1],
Junio C Hamano8fb66e52011-10-05 20:59:51601linkgit:git-add[1],
602linkgit:git-ls-files[1]
Junio C Hamano1a4e8412005-12-27 08:17:23603
Junio C Hamano1a4e8412005-12-27 08:17:23604GIT
605---
Junio C Hamanof7c042d2008-06-06 22:50:53606Part of the linkgit:git[1] suite