summaryrefslogtreecommitdiffstats
path: root/git-update-index.txt
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2020-01-30 15:21:18 -0800
committerJunio C Hamano <gitster@pobox.com>2020-01-30 15:21:18 -0800
commitbee061d2412e903308bc5c13b81b88fe76b57bcf (patch)
tree11d0a7af62bc4e6691f58982e31dce59c4c3f70a /git-update-index.txt
parent29eab9abf58219b768ebdb67a245f995df47c97f (diff)
downloadgit-htmldocs-bee061d2412e903308bc5c13b81b88fe76b57bcf.tar.gz
Autogenerated HTML docs for v2.25.0-114-g5b0ca
Diffstat (limited to 'git-update-index.txt')
-rw-r--r--git-update-index.txt16
1 files changed, 16 insertions, 0 deletions
diff --git a/git-update-index.txt b/git-update-index.txt
index c7a6271da..1489cb09a 100644
--- a/git-update-index.txt
+++ b/git-update-index.txt
@@ -549,6 +549,22 @@ The untracked cache extension can be enabled by the
`core.untrackedCache` configuration variable (see
linkgit:git-config[1]).
+NOTES
+-----
+
+Users often try to use the assume-unchanged and skip-worktree bits
+to tell Git to ignore changes to files that are tracked. This does not
+work as expected, since Git may still check working tree files against
+the index when performing certain operations. In general, Git does not
+provide a way to ignore changes to tracked files, so alternate solutions
+are recommended.
+
+For example, if the file you want to change is some sort of config file,
+the repository can include a sample config file that can then be copied
+into the ignored name and modified. The repository can even include a
+script to treat the sample file as a template, modifying and copying it
+automatically.
+
SEE ALSO
--------
linkgit:git-config[1],