Merge branch 'js/rebase-deprecate-preserve-merges'
[gitweb.git] / Documentation / gitignore.txt
index d107daaffd4e84921c47951cf743d1eace11c525..b5bc9dbff05b293caae7c42e865b19bc067c4d82 100644 (file)
@@ -129,7 +129,16 @@ full pathname may have special meaning:
    matches zero or more directories. For example, "`a/**/b`"
    matches "`a/b`", "`a/x/b`", "`a/x/y/b`" and so on.
 
- - Other consecutive asterisks are considered invalid.
+ - Other consecutive asterisks are considered regular asterisks and
+   will match according to the previous rules.
+
+CONFIGURATION
+-------------
+
+The optional configuration variable `core.excludesFile` indicates a path to a
+file containing patterns of file names to exclude, similar to
+`$GIT_DIR/info/exclude`.  Patterns in the exclude file are used in addition to
+those in `$GIT_DIR/info/exclude`.
 
 NOTES
 -----