Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2011-04-07 07:56:19 +0400
committerJunio C Hamano <gitster@pobox.com>2011-04-09 03:20:16 +0400
commitd0546e2d488b1ba185c430b638619ab1d91af509 (patch)
treee789f07a74ed9a32fd50c9f9c657c8e4613ab13b /Documentation/glossary-content.txt
parent2f6c9760debfb4705f6efb5862e2b3a23b2b951c (diff)
magic pathspec: add ":(icase)path" to match case insensitively
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation/glossary-content.txt')
-rw-r--r--Documentation/glossary-content.txt7
1 files changed, 5 insertions, 2 deletions
diff --git a/Documentation/glossary-content.txt b/Documentation/glossary-content.txt
index e51d7e60eb..0ca029b738 100644
--- a/Documentation/glossary-content.txt
+++ b/Documentation/glossary-content.txt
@@ -319,10 +319,13 @@ top `/`;;
The magic word `top` (mnemonic: `/`) makes the pattern match
from the root of the working tree, even when you are running
the command from inside a subdirectory.
+icase;;
+ The magic word `icase` (there is no mnemonic for it) makes the
+ pattern match case insensitively. E.g. `:(icase)makefile` matches
+ both `Makefile` and `makefile`.
--
+
-Currently only the slash `/` is recognized as the "magic signature",
-but it is envisioned that we will support more types of magic in later
+It is envisioned that we will support more types of magic in later
versions of git.
[[def_parent]]parent::