Re: [RFC PATCH 06/13] commit-reach: move can_all_from_reach_with_flag()

2018-06-29 Thread Derrick Stolee
On 6/29/2018 5:47 PM, Stefan Beller wrote: Hi Derrick, +static int reachable(struct commit *from, int with_flag, int assign_flag, time_t min_commit_date) [...] + if (commit->date < min_commit_date) + continue; [...] +int can_all_from_reach_with_flag(str

Re: [RFC PATCH 06/13] commit-reach: move can_all_from_reach_with_flag()

2018-06-29 Thread Stefan Beller
Hi Derrick, > +static int reachable(struct commit *from, int with_flag, int assign_flag, > time_t min_commit_date) [...] > + if (commit->date < min_commit_date) > + continue; [...] > +int can_all_from_reach_with_flag(struct object_array from, > +

[RFC PATCH 06/13] commit-reach: move can_all_from_reach_with_flag()

2018-06-29 Thread Derrick Stolee
Signed-off-by: Derrick Stolee --- commit-reach.c | 61 + commit-reach.h | 8 +++ upload-pack.c | 62 +++--- 3 files changed, 72 insertions(+), 59 deletions(-) diff --git a/commit-reach.c b/commit-re