Re: [PATCH v8 19/19] untracked-cache: config option

2016-05-05 Thread Junio C Hamano
David Turner writes: > + if (!git_config_get_bool("index.adduntrackedcache", &untracked) && > + untracked && > + !istate->untracked) > + add_untracked_cache(&the_index); The body is indented with HT + 4 spaces, replace it with two HTs. -- To unsubscribe from this list

[PATCH v8 19/19] untracked-cache: config option

2016-05-05 Thread David Turner
Add a config option to populate the untracked cache. For installations that have centrally-managed configuration, it's easier to set a config once than to run update-index on every repository. Signed-off-by: David Turner --- Documentation/config.txt | 4 read-cache.c | 7 ++