summaryrefslogtreecommitdiffstats
path: root/gitignore.txt
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2013-11-07 16:30:52 -0800
committerJunio C Hamano <gitster@pobox.com>2013-11-07 16:30:52 -0800
commit83e0e0bed9a67680b1d8e76a8de9b2f643e14372 (patch)
treee5de1c7818cd1a014cbd26574ffaf3147165b5b2 /gitignore.txt
parent92fb952815d93a0bc883020987df2e558835ca1b (diff)
downloadgit-htmldocs-83e0e0bed9a67680b1d8e76a8de9b2f643e14372.tar.gz
Autogenerated HTML docs for v1.8.5-rc1-11-g867b1
Diffstat (limited to 'gitignore.txt')
-rw-r--r--gitignore.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/gitignore.txt b/gitignore.txt
index 54e334e3a..f97196051 100644
--- a/gitignore.txt
+++ b/gitignore.txt
@@ -113,12 +113,12 @@ full pathname may have special meaning:
- A leading "`**`" followed by a slash means match in all
directories. For example, "`**/foo`" matches file or directory
- "`foo`" anywhere, the same as pattern "`foo`". "**/foo/bar"
+ "`foo`" anywhere, the same as pattern "`foo`". "`**/foo/bar`"
matches file or directory "`bar`" anywhere that is directly
under directory "`foo`".
- - A trailing "/**" matches everything inside. For example,
- "abc/**" matches all files inside directory "abc", relative
+ - A trailing "`/**`" matches everything inside. For example,
+ "`abc/**`" matches all files inside directory "`abc`", relative
to the location of the `.gitignore` file, with infinite depth.
- A slash followed by two consecutive asterisks then a slash