diff options
author | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2008-03-21 16:52:46 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2008-04-09 01:22:25 -0700 |
commit | 0a9b88b7dee70bd36d35b7857640a18ee3adeef1 (patch) | |
tree | 8d5fb7c5423aaecc30d6ed3beabb6529921e808a /cache.h | |
parent | cd2fef59edf72a1d9792d9cb72aae1e6f6c7b1d4 (diff) | |
download | git-0a9b88b7dee70bd36d35b7857640a18ee3adeef1.tar.gz git-0a9b88b7dee70bd36d35b7857640a18ee3adeef1.tar.xz |
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; |