Re: [PATCH 3/7] connect.c: teach get_remote_heads to parse "shallow" lines

2013-07-19 Thread Junio C Hamano
Nguyễn Thái Ngọc Duy writes: > diff --git a/cache.h b/cache.h > index dd0fb33..7665e03 100644 > --- a/cache.h > +++ b/cache.h > @@ -1091,6 +1091,7 @@ struct extra_have_objects { > }; > extern struct ref **get_remote_heads(int in, char *src_buf, size_t src_len, >

[PATCH 3/7] connect.c: teach get_remote_heads to parse "shallow" lines

2013-07-17 Thread Nguyễn Thái Ngọc Duy
No callers pass a non-empty pointer as shallow_points at this stage. As a result, all clients still refuse to talk to shallow repository on the other end. Signed-off-by: Nguyễn Thái Ngọc Duy --- builtin/fetch-pack.c | 2 +- builtin/send-pack.c | 2 +- cache.h | 1 + connect.c