Re: [PATCH v12 18/20] index-helper: optionally automatically run

2016-06-25 Thread Duy Nguyen
On Thu, May 19, 2016 at 11:45 PM, David Turner wrote: > +static void autorun_index_helper(void) > +{ > + const char *argv[] = {"git-index-helper", "--detach", "--autorun", > NULL}; > + if (want_auto_index_helper() <= 0) > + return; > + > + trace_argv_printf(argv, "

[PATCH v12 18/20] index-helper: optionally automatically run

2016-05-19 Thread David Turner
Introduce a new config option, indexhelper.autorun, to automatically run git index-helper before starting up a builtin git command. This enables users to keep index-helper running without manual intervention. Signed-off-by: David Turner --- Documentation/config.txt | 4 read-cache.c