Re: [PATCH/RFC 5/7] refs: add function to repack without multiple refs

2013-08-29 Thread Brad King
On 08/29/2013 01:34 PM, Junio C Hamano wrote: > Brad King writes: >> +if(i == n) > > Style: > if (i == n) Fixed in next revision. -Brad -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majord...@vger.kernel.org More majordomo info at http:

Re: [PATCH/RFC 5/7] refs: add function to repack without multiple refs

2013-08-29 Thread Junio C Hamano
Brad King writes: > Generalize repack_without_ref as repack_without_refs to support a list > of refs and implement the former in terms of the latter. > > Signed-off-by: Brad King > --- > refs.c | 29 ++--- > 1 file changed, 22 insertions(+), 7 deletions(-) > > diff --g