2005-09-08 02:26:23 +02:00
|
|
|
git-update-index(1)
|
2005-05-10 23:32:30 +02:00
|
|
|
===================
|
|
|
|
|
|
|
|
NAME
|
|
|
|
----
|
2005-09-08 02:26:23 +02:00
|
|
|
git-update-index - Modifies the index or directory cache
|
2005-05-10 23:32:30 +02:00
|
|
|
|
|
|
|
|
|
|
|
SYNOPSIS
|
|
|
|
--------
|
2005-09-08 02:26:23 +02:00
|
|
|
'git-update-index'
|
2005-10-29 23:46:41 +02:00
|
|
|
[--add] [--remove | --force-remove] [--replace]
|
|
|
|
[--refresh [-q] [--unmerged] [--ignore-missing]]
|
2005-05-10 23:32:30 +02:00
|
|
|
[--cacheinfo <mode> <object> <file>]\*
|
2005-10-29 23:32:56 +02:00
|
|
|
[--chmod=(+|-)x]
|
2005-10-29 23:46:41 +02:00
|
|
|
[--info-only] [--index-info]
|
|
|
|
[-z] [--stdin]
|
|
|
|
[--verbose]
|
2005-05-10 23:32:30 +02:00
|
|
|
[--] [<file>]\*
|
|
|
|
|
|
|
|
DESCRIPTION
|
|
|
|
-----------
|
|
|
|
Modifies the index or directory cache. Each file mentioned is updated
|
2005-11-11 02:12:27 +01:00
|
|
|
into the index and any 'unmerged' or 'needs updating' state is
|
2005-05-10 23:32:30 +02:00
|
|
|
cleared.
|
|
|
|
|
2005-09-08 02:26:23 +02:00
|
|
|
The way "git-update-index" handles files it is told about can be modified
|
2005-05-10 23:32:30 +02:00
|
|
|
using the various options:
|
|
|
|
|
|
|
|
OPTIONS
|
|
|
|
-------
|
|
|
|
--add::
|
2005-11-11 02:12:27 +01:00
|
|
|
If a specified file isn't in the index already then it's
|
2005-05-10 23:32:30 +02:00
|
|
|
added.
|
|
|
|
Default behaviour is to ignore new files.
|
|
|
|
|
|
|
|
--remove::
|
2005-11-11 02:12:27 +01:00
|
|
|
If a specified file is in the index but is missing then it's
|
2005-05-10 23:32:30 +02:00
|
|
|
removed.
|
|
|
|
Default behaviour is to ignore removed file.
|
|
|
|
|
|
|
|
--refresh::
|
2005-11-11 02:12:27 +01:00
|
|
|
Looks at the current index and checks to see if merges or
|
2005-05-10 23:32:30 +02:00
|
|
|
updates are needed by checking stat() information.
|
|
|
|
|
2005-10-29 23:46:41 +02:00
|
|
|
-q::
|
2005-11-11 02:12:27 +01:00
|
|
|
Quiet. If --refresh finds that the index needs an update, the
|
2005-10-29 23:46:41 +02:00
|
|
|
default behavior is to error out. This option makes
|
|
|
|
git-update-index continue anyway.
|
|
|
|
|
|
|
|
--unmerged::
|
2005-11-11 02:12:27 +01:00
|
|
|
If --refresh finds unmerged changes in the index, the default
|
2005-10-29 23:46:41 +02:00
|
|
|
behavior is to error out. This option makes git-update-index
|
|
|
|
continue anyway.
|
|
|
|
|
2005-05-10 23:32:30 +02:00
|
|
|
--ignore-missing::
|
|
|
|
Ignores missing files during a --refresh
|
|
|
|
|
|
|
|
--cacheinfo <mode> <object> <path>::
|
2005-11-11 02:12:27 +01:00
|
|
|
Directly insert the specified info into the index.
|
2005-05-10 23:32:30 +02:00
|
|
|
|
2005-10-29 23:46:41 +02:00
|
|
|
--index-info::
|
2005-11-15 00:20:01 +01:00
|
|
|
Read index information from stdin.
|
2005-10-29 23:46:41 +02:00
|
|
|
|
|
|
|
--chmod=(+|-)x::
|
|
|
|
Set the execute permissions on the updated files.
|
|
|
|
|
2005-07-09 01:52:12 +02:00
|
|
|
--info-only::
|
|
|
|
Do not create objects in the object database for all
|
|
|
|
<file> arguments that follow this flag; just insert
|
2005-11-11 02:12:27 +01:00
|
|
|
their object IDs into the index.
|
2005-07-09 01:52:12 +02:00
|
|
|
|
2005-05-10 23:32:30 +02:00
|
|
|
--force-remove::
|
|
|
|
Remove the file from the index even when the working directory
|
2005-05-31 18:52:43 +02:00
|
|
|
still has such a file. (Implies --remove.)
|
2005-05-10 23:32:30 +02:00
|
|
|
|
|
|
|
--replace::
|
|
|
|
By default, when a file `path` exists in the index,
|
2005-09-08 02:26:23 +02:00
|
|
|
git-update-index refuses an attempt to add `path/file`.
|
2005-05-10 23:32:30 +02:00
|
|
|
Similarly if a file `path/file` exists, a file `path`
|
|
|
|
cannot be added. With --replace flag, existing entries
|
|
|
|
that conflicts with the entry being added are
|
|
|
|
automatically removed with warning messages.
|
|
|
|
|
2005-09-27 03:13:32 +02:00
|
|
|
--stdin::
|
|
|
|
Instead of taking list of paths from the command line,
|
|
|
|
read list of paths from the standard input. Paths are
|
|
|
|
separated by LF (i.e. one path per line) by default.
|
|
|
|
|
2005-10-29 23:46:41 +02:00
|
|
|
--verbose::
|
|
|
|
Report what is being added and removed from index.
|
|
|
|
|
2005-09-27 03:13:32 +02:00
|
|
|
-z::
|
|
|
|
Only meaningful with `--stdin`; paths are separated with
|
|
|
|
NUL character instead of LF.
|
|
|
|
|
2005-05-10 23:32:30 +02:00
|
|
|
--::
|
|
|
|
Do not interpret any more arguments as options.
|
|
|
|
|
|
|
|
<file>::
|
|
|
|
Files to act on.
|
2005-10-29 23:32:56 +02:00
|
|
|
Note that files beginning with '.' are discarded. This includes
|
2005-05-10 23:32:30 +02:00
|
|
|
`./file` and `dir/./file`. If you don't want this, then use
|
|
|
|
cleaner names.
|
|
|
|
The same applies to directories ending '/' and paths with '//'
|
|
|
|
|
|
|
|
Using --refresh
|
|
|
|
---------------
|
2005-11-11 02:12:27 +01:00
|
|
|
'--refresh' does not calculate a new sha1 file or bring the index
|
2005-05-10 23:32:30 +02:00
|
|
|
up-to-date for mode/content changes. But what it *does* do is to
|
2005-11-11 02:12:27 +01:00
|
|
|
"re-match" the stat information of a file with the index, so that you
|
|
|
|
can refresh the index for a file that hasn't been changed but where
|
2005-05-10 23:32:30 +02:00
|
|
|
the stat entry is out of date.
|
|
|
|
|
|
|
|
For example, you'd want to do this after doing a "git-read-tree", to link
|
2005-11-11 02:12:27 +01:00
|
|
|
up the stat index details with the proper files.
|
2005-05-10 23:32:30 +02:00
|
|
|
|
2005-07-09 01:52:12 +02:00
|
|
|
Using --cacheinfo or --info-only
|
|
|
|
--------------------------------
|
|
|
|
'--cacheinfo' is used to register a file that is not in the
|
|
|
|
current working directory. This is useful for minimum-checkout
|
|
|
|
merging.
|
|
|
|
|
2005-10-03 19:16:30 +02:00
|
|
|
To pretend you have a file with mode and sha1 at path, say:
|
2005-05-10 23:32:30 +02:00
|
|
|
|
2005-09-08 02:26:23 +02:00
|
|
|
$ git-update-index --cacheinfo mode sha1 path
|
2005-05-10 23:32:30 +02:00
|
|
|
|
2005-07-09 01:52:12 +02:00
|
|
|
'--info-only' is used to register files without placing them in the object
|
|
|
|
database. This is useful for status-only repositories.
|
2005-05-10 23:32:30 +02:00
|
|
|
|
2005-07-09 01:52:12 +02:00
|
|
|
Both '--cacheinfo' and '--info-only' behave similarly: the index is updated
|
|
|
|
but the object database isn't. '--cacheinfo' is useful when the object is
|
|
|
|
in the database but the file isn't available locally. '--info-only' is
|
|
|
|
useful when the file is available, but you do not wish to update the
|
|
|
|
object database.
|
|
|
|
|
|
|
|
Examples
|
|
|
|
--------
|
2005-05-10 23:32:30 +02:00
|
|
|
To update and refresh only the files already checked out:
|
|
|
|
|
2005-09-08 02:26:23 +02:00
|
|
|
git-checkout-index -n -f -a && git-update-index --ignore-missing --refresh
|
2005-05-10 23:32:30 +02:00
|
|
|
|
|
|
|
|
2005-10-29 23:32:56 +02:00
|
|
|
Configuration
|
|
|
|
-------------
|
|
|
|
|
|
|
|
The command honors `core.filemode` configuration variable. If
|
|
|
|
your repository is on an filesystem whose executable bits are
|
|
|
|
unreliable, this should be set to 'false'. This causes the
|
|
|
|
command to ignore differences in file modes recorded in the
|
|
|
|
index and the file mode on the filesystem if they differ only on
|
|
|
|
executable bit. On such an unfortunate filesystem, you may
|
|
|
|
need to use `git-update-index --chmod=`.
|
|
|
|
|
2005-05-10 23:32:30 +02:00
|
|
|
Author
|
|
|
|
------
|
|
|
|
Written by Linus Torvalds <torvalds@osdl.org>
|
|
|
|
|
|
|
|
Documentation
|
|
|
|
--------------
|
|
|
|
Documentation by David Greaves, Junio C Hamano and the git-list <git@vger.kernel.org>.
|
|
|
|
|
|
|
|
GIT
|
|
|
|
---
|
2005-09-19 12:10:51 +02:00
|
|
|
Part of the gitlink:git[7] suite
|
2005-05-10 23:32:30 +02:00
|
|
|
|