Re: [PATCH 1/2] fetch: run gc --auto after fetching

2013-01-26 Thread Jonathan Nieder
Jeff King wrote: > --- a/builtin/fetch.c > +++ b/builtin/fetch.c > @@ -959,6 +959,9 @@ int cmd_fetch(int argc, const char **argv, const char > *prefix) > struct string_list list = STRING_LIST_INIT_NODUP; > struct remote *remote; > int result = 0; > + static const char *argv_

[PATCH 1/2] fetch: run gc --auto after fetching

2013-01-26 Thread Jeff King
We generally try to run "gc --auto" after any commands that might introduce a large number of new objects. An obvious place to do so is after running "fetch", which may introduce new loose objects or packs (depending on the size of the fetch). While an active developer repository will probably eve

[PATCH 1/2] fetch: run gc --auto after fetching

2012-12-07 Thread Jeff King
We generally try to run "gc --auto" after any commands that might introduce a large number of new objects. An obvious place to do so is after running "fetch", which may introduce new loose objects or packs (depending on the size of the fetch). While an active developer repository will probably eve