Re: [PATCH v10 00/40] libify apply and use lib in am, part 2

2016-08-08 Thread Junio C Hamano
Christian Couder writes: > diff --git a/apply.h b/apply.h > index 27a3a7a..e2b89e8 100644 > --- a/apply.h > +++ b/apply.h > @@ -16,7 +16,7 @@ enum apply_ws_ignore { > enum apply_verbosity { > verbosity_silent = -1, > verbosity_normal = 0, > -

Re: [PATCH v10 00/40] libify apply and use lib in am, part 2

2016-08-08 Thread Christian Couder
On Mon, Aug 8, 2016 at 11:02 PM, Christian Couder wrote: > > I will send a diff between this version and the previous one, as a > reply to this email. Here is the diff: diff --git a/apply.c b/apply.c index a73889e..2ec2a8a 100644 --- a/apply.c +++ b/apply.c @@

[PATCH v10 00/40] libify apply and use lib in am, part 2

2016-08-08 Thread Christian Couder
Goal This is a patch series about libifying `git apply` functionality, and using this libified functionality in `git am`, so that no 'git apply' process is spawn anymore. This makes `git am` significantly faster, so `git rebase`, when it uses the am backend, is also significantly faster.