summaryrefslogtreecommitdiff
path: root/Documentation
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2011-10-05 19:36:25 (GMT)
committerJunio C Hamano <gitster@pobox.com>2011-10-05 19:36:25 (GMT)
commitf6be8fbcbafe552a8b60b9c9394203a752de5e06 (patch)
tree5cb3ce77924ad72f54126ada692d59e24e8f7002 /Documentation
parent5fbef463a144fdb84a5b211e87d1d4bf67d61d4a (diff)
parentacd6d7e70a0dd2a91c6028e5ca68d19c5de4d00b (diff)
downloadgit-f6be8fbcbafe552a8b60b9c9394203a752de5e06.zip
git-f6be8fbcbafe552a8b60b9c9394203a752de5e06.tar.gz
git-f6be8fbcbafe552a8b60b9c9394203a752de5e06.tar.bz2
Merge branch 'sn/doc-update-index-assume-unchanged'
* sn/doc-update-index-assume-unchanged: Documentation/git-update-index: refer to 'ls-files'
Diffstat (limited to 'Documentation')
-rw-r--r--Documentation/git-update-index.txt7
1 files changed, 5 insertions, 2 deletions
diff --git a/Documentation/git-update-index.txt b/Documentation/git-update-index.txt
index d393129..a3081f4 100644
--- a/Documentation/git-update-index.txt
+++ b/Documentation/git-update-index.txt
@@ -264,7 +264,9 @@ tree files, you have to explicitly tell git about it by dropping
"assume unchanged" bit, either before or after you modify them.
In order to set "assume unchanged" bit, use `--assume-unchanged`
-option. To unset, use `--no-assume-unchanged`.
+option. To unset, use `--no-assume-unchanged`. To see which files
+have the "assume unchanged" bit set, use `git ls-files -v`
+(see linkgit:git-ls-files[1]).
The command looks at `core.ignorestat` configuration variable. When
this is true, paths updated with `git update-index paths...` and
@@ -363,7 +365,8 @@ ctime for marking files processed) (see linkgit:git-config[1]).
SEE ALSO
--------
linkgit:git-config[1],
-linkgit:git-add[1]
+linkgit:git-add[1],
+linkgit:git-ls-files[1]
GIT
---