Re: [PATCH v5] archive: initialize archivers earlier

2018-10-25 Thread Junio C Hamano
Jeff King writes: > On Thu, Oct 25, 2018 at 01:32:14PM -0700, stead...@google.com wrote: > >> Initialize archivers as soon as possible when running git-archive. >> Various non-obvious behavior depends on having the archivers >> initialized, such as determining the desired archival format from

Re: [PATCH v5] archive: initialize archivers earlier

2018-10-25 Thread Jeff King
On Thu, Oct 25, 2018 at 01:32:14PM -0700, stead...@google.com wrote: > Initialize archivers as soon as possible when running git-archive. > Various non-obvious behavior depends on having the archivers > initialized, such as determining the desired archival format from the > provided filename. >

[PATCH v5] archive: initialize archivers earlier

2018-10-25 Thread steadmon
Initialize archivers as soon as possible when running git-archive. Various non-obvious behavior depends on having the archivers initialized, such as determining the desired archival format from the provided filename. Since 08716b3c11 ("archive: refactor file extension format-guessing",