Re: [RFC/PATCH 00/48] Libifying git apply

2016-03-11 Thread Christian Couder
On Thu, Mar 10, 2016 at 10:26 AM, Duy Nguyen wrote: > On Thu, Mar 10, 2016 at 12:48 AM, Christian Couder > wrote: >> This is a patch series about libifying "git apply" functionality, to >> be able to use this functionality in "git am" without

Re: [RFC/PATCH 00/48] Libifying git apply

2016-03-11 Thread Christian Couder
On Wed, Mar 9, 2016 at 7:14 PM, Junio C Hamano wrote: > Christian Couder writes: > >> One point I'd especially welcome feedback about is the fact that there >> are many boolean options that are using OPT_BOOL(...), so they use an >> int. And there

Re: [RFC/PATCH 00/48] Libifying git apply

2016-03-10 Thread Duy Nguyen
On Thu, Mar 10, 2016 at 12:48 AM, Christian Couder wrote: > This is a patch series about libifying "git apply" functionality, to > be able to use this functionality in "git am" without spawning new > processes. This should make "git am" and "git rebase" significantly >

Re: [RFC/PATCH 00/48] Libifying git apply

2016-03-09 Thread Junio C Hamano
Christian Couder writes: > One point I'd especially welcome feedback about is the fact that there > are many boolean options that are using OPT_BOOL(...), so they use an > int. And there are a few others that are using OPT_BIT(...), so they > use just a bit. I wonder

[RFC/PATCH 00/48] Libifying git apply

2016-03-09 Thread Christian Couder
This is a patch series about libifying "git apply" functionality, to be able to use this functionality in "git am" without spawning new processes. This should make "git am" and "git rebase" significantly faster. This has been discussed in the following thread: