Re: [PATCH 07/16] commit-reach: move can_all_from_reach_with_flags
> /* Remember to update object flag allocation in object.h */ > +#define REACHABLE (1u<<15) > #define PARENT1 (1u<<16) > #define PARENT2 (1u<<17) > #define STALE(1u<<18) Update the object flag allocation in object.h. > +int reachable(struct comm
[PATCH 07/16] commit-reach: move can_all_from_reach_with_flags
From: Derrick Stolee Signed-off-by: Derrick Stolee --- commit-reach.c | 62 + commit-reach.h | 13 ++ upload-pack.c | 69 +- 3 files changed, 76 insertions(+), 68 deletions(-) diff --git a/comm