[PATCH v6] Implement --first-parent for git rev-list --bisect

2018-08-28 Thread Tiago Botelho
This will enable users to implement bisecting on first parents which can be useful for when the commits from a feature branch that we want to merge are not always tested. Signed-off-by: Tiago Botelho --- This patch refactors **only** the tests according to the suggestions made by Junio in v5

Re: [RFC PATCH v5] Implement --first-parent for git rev-list --bisect

2018-07-03 Thread Tiago Botelho
On Fri, 29 Jun 2018 at 12:21, Johannes Schindelin wrote: > > Hi Junio, > > On Thu, 28 Jun 2018, Junio C Hamano wrote: > > > What I meant by "many separte grep calls" was to contrast these two > > approaches: > > > > * Have one typical output spelled out as "expect", take an output > >from an

[RFC PATCH v5] Implement --first-parent for git rev-list --bisect

2018-06-22 Thread Tiago Botelho
This will enable users to implement bisecting on first parents which can be useful for when the commits from a feature branch that we want to merge are not always tested. Signed-off-by: Tiago Botelho --- This patch resolves every issue with the unit tests. The bug detected by Junio regarding

Re: [RFC PATCH v4] Implement --first-parent for git rev-list --bisect

2018-05-28 Thread Tiago Botelho
On 28 May 2018 at 15:25, Junio C Hamano wrote: > Tiago Botelho writes: > > This will enable users to implement bisecting on first parents > > which can be useful for when the commits from a feature branch > > that we want to merge are not always tested. > > >

[RFC PATCH v4] Implement --first-parent for git rev-list --bisect

2018-05-28 Thread Tiago Botelho
This will enable users to implement bisecting on first parents which can be useful for when the commits from a feature branch that we want to merge are not always tested. Signed-off-by: Tiago Botelho <tiagonbote...@hotmail.com> --- This patch adds all Junio's suggestions,

[RFC PATCH v3 1/2] Implement --first-parent for git rev-list --bisect

2018-05-23 Thread Tiago Botelho
This will enable users to implement bisecting on first parents which can be useful for when the commits from a feature branch that we want to merge are not always tested. Signed-off-by: Tiago Botelho <tiagonbote...@hotmail.com> --- bisect.c

[RFC PATCH v3 2/2] Add tests for rev-list --bisect* --first-parent

2018-05-23 Thread Tiago Botelho
--- t/t6002-rev-list-bisect.sh | 39 +++ 1 file changed, 39 insertions(+) diff --git a/t/t6002-rev-list-bisect.sh b/t/t6002-rev-list-bisect.sh index a66140803..977c82157 100755 --- a/t/t6002-rev-list-bisect.sh +++ b/t/t6002-rev-list-bisect.sh @@ -263,4 +263,43

[RFC PATCH v2] Implement --first-parent for git rev-list --bisect.

2018-05-10 Thread Tiago Botelho
This will enable users to implement bisecting on first parents which can be useful for when the commits from a feature branch that we want to merge are not always tested. Signed-off-by: Tiago Botelho <tiagonbote...@hotmail.com> --- This patch is based on pu so that it can be on top of hn/

[PATCH] Implement --first-parent for git rev-list --bisect

2018-05-09 Thread Tiago Botelho
--- bisect.c | 53 +++-- bisect.h | 1 + builtin/rev-list.c | 3 +++ 3 files changed, 35 insertions(+), 22 deletions(-) diff --git a/bisect.c b/bisect.c index 4eafc8262..f43713574 100644 --- a/bisect.c +++ b/bisect.c @@ -34,7

Re: [PATCH] Create '--merges-only' option for 'git bisect'

2018-04-30 Thread Tiago Botelho
On Mon, Apr 30, 2018 at 12:31 PM, Johannes Schindelin <johannes.schinde...@gmx.de> wrote: > Hi Tiago, > >> > On Thu, 12 Apr 2018, Tiago Botelho wrote: >> > >> >> On Thu, Apr 12, 2018 at 9:58 AM, Christian Couder >> >> <christian.cou...@

Re: [PATCH] Create '--merges-only' option for 'git bisect'

2018-04-12 Thread Tiago Botelho
On Thu, Apr 12, 2018 at 12:53 PM, Johannes Schindelin <johannes.schinde...@gmx.de> wrote: > Hi Tiago, > > On Thu, 12 Apr 2018, Tiago Botelho wrote: > >> On Thu, Apr 12, 2018 at 9:58 AM, Christian Couder >> <christian.cou...@gmail.com> wrote: >> > On

Re: [PATCH] Create '--merges-only' option for 'git bisect'

2018-04-12 Thread Tiago Botelho
R for quite some time. I intended to pick it back up again next week. If it is ok with Harald I would love to finish the PR that I started, since it is quite close to being finished (I think it was just specs missing if I am not mistaken). Kind regards, Tiago Botelho