diff options
author | Junio C Hamano <gitster@pobox.com> | 2011-05-10 10:23:41 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2011-05-10 10:23:41 -0700 |
commit | 6d9429271013898df103f7e77ed0736cdfab01b8 (patch) | |
tree | f05e5e3d198fda2079c0c4a5ebb0d8f6d1877b43 /Documentation/glossary-content.txt | |
parent | d0546e2d488b1ba185c430b638619ab1d91af509 (diff) | |
download | git-6d9429271013898df103f7e77ed0736cdfab01b8.tar.gz |
Revert "magic pathspec: add ":(icase)path" to match case insensitively"
This reverts commit d0546e2d488b1ba185c430b638619ab1d91af509, which
was only meant to be a Proof-of-concept used during the discussion.
The real implementation of the feature needs to wait until we migrate
all the code to use "struct pathspec", not "char **", to represent
richer semantics given to pathspec.
Diffstat (limited to 'Documentation/glossary-content.txt')
-rw-r--r-- | Documentation/glossary-content.txt | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/Documentation/glossary-content.txt b/Documentation/glossary-content.txt index 0ca029b738..e51d7e60eb 100644 --- a/Documentation/glossary-content.txt +++ b/Documentation/glossary-content.txt @@ -319,13 +319,10 @@ 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`. -- + -It is envisioned that we will support more types of magic in later +Currently only the slash `/` is recognized as the "magic signature", +but it is envisioned that we will support more types of magic in later versions of git. [[def_parent]]parent:: |