Re: [PATCH v3] push: respect --no-thin

2013-08-13 Thread Junio C Hamano
Duy Nguyen writes: > transport_get() actually sets thin option to 1 by default. Yeah, I missed your message in the nearby thread. It indeed does. -- 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 v3] push: respect --no-thin

2013-08-12 Thread Duy Nguyen
On Mon, Aug 12, 2013 at 12:59 PM, Junio C Hamano wrote: >> @@ -15,7 +15,7 @@ static const char * const push_usage[] = { >> NULL, >> }; >> >> -static int thin; >> +static int thin = 1; >> static int deleterefs; >> static const char *receivepack; >> static int verbosity; >> @@ -313,8 +313,

Re: [PATCH v3] push: respect --no-thin

2013-08-11 Thread Junio C Hamano
Nguyễn Thái Ngọc Duy writes: > Over the time the default value for --thin has been switched between > on and off. As of now it's always on, even if --no-thin is given. > Correct the code to respect --no-thin. > > receive-pack learns about --no-thin only for testing purposes, hence > no document

[PATCH v3] push: respect --no-thin

2013-08-11 Thread Nguyễn Thái Ngọc Duy
Over the time the default value for --thin has been switched between on and off. As of now it's always on, even if --no-thin is given. Correct the code to respect --no-thin. receive-pack learns about --no-thin only for testing purposes, hence no document update. Signed-off-by: Nguyễn Thái Ngọc Du