diff options
author | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2008-03-22 00:52:46 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2008-04-09 10:22:25 +0200 |
commit | 0a9b88b7dee70bd36d35b7857640a18ee3adeef1 (patch) | |
tree | 8d5fb7c5423aaecc30d6ed3beabb6529921e808a /cache.h | |
parent | Make hash_name_lookup able to do case-independent lookups (diff) | |
download | git-0a9b88b7dee70bd36d35b7857640a18ee3adeef1.tar.xz git-0a9b88b7dee70bd36d35b7857640a18ee3adeef1.zip |
Add 'core.ignorecase' option
..and start using it for directory entry traversal (ie "git status" will
not consider entries that match an existing entry case-insensitively to
be a new file)
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'cache.h')
-rw-r--r-- | cache.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -407,6 +407,7 @@ extern int delete_ref(const char *, const unsigned char *sha1); extern int trust_executable_bit; extern int quote_path_fully; extern int has_symlinks; +extern int ignore_case; extern int assume_unchanged; extern int prefer_symlink_refs; extern int log_all_ref_updates; |