Re: [PATCH v2 0/6] convert pathspec.c to take an index parameter

2017-05-12 Thread Brandon Williams
On 05/12, Junio C Hamano wrote: > Brandon Williams writes: > > > The main difference in v2 is that instead of piping through an index_state > > struct into parse_pathspec, I ripped out the logic that needed to access the > > index and either removed it completely if it wasn't needed anymore > >

Re: [PATCH v2 0/6] convert pathspec.c to take an index parameter

2017-05-11 Thread Junio C Hamano
Brandon Williams writes: > The main difference in v2 is that instead of piping through an index_state > struct into parse_pathspec, I ripped out the logic that needed to access the > index and either removed it completely if it wasn't needed anymore (stripping > submodule slash) or factored it ou

[PATCH v2 0/6] convert pathspec.c to take an index parameter

2017-05-11 Thread Brandon Williams
The main difference in v2 is that instead of piping through an index_state struct into parse_pathspec, I ripped out the logic that needed to access the index and either removed it completely if it wasn't needed anymore (stripping submodule slash) or factored it out into its own function which can b