summaryrefslogtreecommitdiffstats
path: root/git-ls-files.txt
diff options
context:
space:
mode:
authorJunio C Hamano <junio@hera.kernel.org>2006-07-15 01:38:40 +0000
committerJunio C Hamano <junio@hera.kernel.org>2006-07-15 01:38:40 +0000
commit7ccb9fd251897744e84ea1692321ec66a3b0164a (patch)
tree922f59cc1bd4777941a58052d6b014f54d20dd2b /git-ls-files.txt
parent9ae1a06fff2c6453541219a122490cd5b60b3088 (diff)
downloadgit-htmldocs-7ccb9fd251897744e84ea1692321ec66a3b0164a.tar.gz
Autogenerated HTML docs for v1.4.1-ga3e6
Diffstat (limited to 'git-ls-files.txt')
-rw-r--r--git-ls-files.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/git-ls-files.txt b/git-ls-files.txt
index 4d8a2ad2d..8520b9711 100644
--- a/git-ls-files.txt
+++ b/git-ls-files.txt
@@ -207,7 +207,7 @@ An exclude pattern is of the following format:
An example:
--------------------------------------------------------------
- $ cat .git/ignore
+ $ cat .git/info/exclude
# ignore objects and archives, anywhere in the tree.
*.[oa]
$ cat Documentation/.gitignore
@@ -217,7 +217,7 @@ An example:
!foo.html
$ git-ls-files --ignored \
--exclude='Documentation/*.[0-9]' \
- --exclude-from=.git/ignore \
+ --exclude-from=.git/info/exclude \
--exclude-per-directory=.gitignore
--------------------------------------------------------------