Re: [PATCH 02/13] list-objects-filter-map: extend oidmap to collect omitted objects

2017-10-25 Thread Junio C Hamano
Jeff Hostetler writes: > Sorry, I meant a later commit in this patch series. It is used by > commits 4, 5, 6, and 10 to actually do the filtering and collect a > list of omitted or missing objects. I know you meant "later commits in the series" ;-). It does not change the fact that readers o

Re: [PATCH 02/13] list-objects-filter-map: extend oidmap to collect omitted objects

2017-10-25 Thread Jeff Hostetler
On 10/25/2017 3:10 AM, Junio C Hamano wrote: Jeff Hostetler writes: From: Jeff Hostetler Create helper class to extend oidmap to collect a list of omitted or missing objects during traversal. The reason why oidmap itself cannot be used is because the code wants to record not just the obj

Re: [PATCH 02/13] list-objects-filter-map: extend oidmap to collect omitted objects

2017-10-25 Thread Junio C Hamano
Jeff Hostetler writes: > From: Jeff Hostetler > > Create helper class to extend oidmap to collect a list of > omitted or missing objects during traversal. The reason why oidmap itself cannot be used is because the code wants to record not just the object name but something else about the object

[PATCH 02/13] list-objects-filter-map: extend oidmap to collect omitted objects

2017-10-24 Thread Jeff Hostetler
From: Jeff Hostetler Create helper class to extend oidmap to collect a list of omitted or missing objects during traversal. This will be used in a later commit by the list-object filtering code. Signed-off-by: Jeff Hostetler --- Makefile | 1 + list-objects-filter-map.c | 63