larsxschneider@xxxxxxxxx writes: > The goal of this series is to avoid launching a new clean/smudge filter > process for each file that is filtered. > > A short summary about v1 to v5 can be found here: > https://git.github.io/rev_news/2016/08/17/edition-18/ > > This series is also published on web: > https://github.com/larsxschneider/git/pull/15 > > Patches 1 and 2 are cleanups and not strictly necessary for the series. > Patches 3 to 12 are required preparation. Patch 13 is the main patch. > Patch 14 adds an example how to use the Git filter protocol in contrib. Will replace. If you ever need tor reroll 13, please squash the following in (which I already did locally so there is no need to resend only to correct it). Thanks. convert.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/convert.c b/convert.c index 9d2aa68df9..bc242276ff 100644 --- a/convert.c +++ b/convert.c @@ -535,7 +535,8 @@ static int packet_write_list(int fd, const char *line, ...) return packet_flush_gently(fd); } -static void read_multi_file_filter_status(int fd, struct strbuf *status) { +static void read_multi_file_filter_status(int fd, struct strbuf *status) +{ struct strbuf **pair; char *line; for (;;) { -- 2.10.1-613-g6ad57fc60c